styles.css 122 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568
  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. #u36977_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. #u36977 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u36977 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u36977_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u36978_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. #u36978 {
  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. #u36978 .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. #u36978_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u36979_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. #u36979 {
  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. #u36979 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u36979_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u36980 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u36981_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u36981 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u36981 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u36981_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u36982_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. #u36982 {
  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. #u36982 .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. #u36982_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u36983_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. #u36983 {
  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. #u36983 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u36983_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u36984 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u36985_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. #u36985_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. #u36985_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. #u36985 {
  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. #u36985 .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. #u36985_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. #u36985.disabled {
  356. }
  357. .u36985_input_option {
  358. font-size:14px;
  359. }
  360. #u36986_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u36986 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u36986 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u36986_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u36987_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. #u36987 {
  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. #u36987 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u36987_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u36988_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. #u36988 {
  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. #u36988 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u36988_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u36989 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u36990_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. #u36990 {
  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. #u36990 .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. #u36990_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u36991_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u36991 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u36991 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u36991_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u36992 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u36993_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. #u36993 {
  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. #u36993 .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. #u36993_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u36994_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u36994 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u36994 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u36994_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u36995 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u36996_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. #u36996 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:399px;
  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. #u36996 .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. #u36996_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u36997_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u36997 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u36997 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u36997_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u36998 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u36999_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. #u36999 {
  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. #u36999 .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. #u36999_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u37000_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u37000 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u37000 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u37000_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u37001 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u37002_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. #u37002 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:441px;
  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. #u37002 .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. #u37002_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u37003_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u37003 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u37003 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u37003_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u37004 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u37005_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. #u37005 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:315px;
  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. #u37005 .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. #u37005_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u37006_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u37006 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u37006 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u37006_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u37007 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u37008_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. #u37008 {
  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. #u37008 .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. #u37008_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u37009_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u37009 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u37009 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u37009_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u37010 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u37011_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. #u37011 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:357px;
  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. #u37011 .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. #u37011_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u37012_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u37012 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u37012 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u37012_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u37013 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u37014_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. #u37014 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:483px;
  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. #u37014 .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. #u37014_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u37015_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u37015 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u37015 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u37015_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u37016 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u37017_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. #u37017 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:525px;
  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. #u37017 .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. #u37017_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u37018_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u37018 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u37018 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u37018_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u37019_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. #u37019 {
  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. #u37019 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u37019_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u37020_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u37020 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u37020 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u37020_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u37021_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. #u37021 {
  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. #u37021 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u37021_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u37022_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u37022 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u37022 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u37022_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u37023 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u37024_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. #u37024 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:231px;
  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. #u37024 .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. #u37024_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u37025_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u37025 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u37025 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u37025_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u37026 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u37027_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. #u37027 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:273px;
  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. #u37027 .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. #u37027_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u37028_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u37028 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u37028 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u37028_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u37029_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1460px;
  1644. height:1179px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1650. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1651. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1652. }
  1653. #u37029 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:131px;
  1657. top:59px;
  1658. width:1460px;
  1659. height:1179px;
  1660. display:flex;
  1661. }
  1662. #u37029 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:2px 2px 2px 2px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u37029_text {
  1670. border-width:0px;
  1671. word-wrap:break-word;
  1672. text-transform:none;
  1673. visibility:hidden;
  1674. }
  1675. #u37030_div {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:0px;
  1679. top:0px;
  1680. width:73px;
  1681. height:25px;
  1682. background:inherit;
  1683. background-color:rgba(255, 255, 255, 0);
  1684. border:none;
  1685. border-radius:0px;
  1686. -moz-box-shadow:none;
  1687. -webkit-box-shadow:none;
  1688. box-shadow:none;
  1689. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1690. font-weight:500;
  1691. font-style:normal;
  1692. font-size:18px;
  1693. }
  1694. #u37030 {
  1695. border-width:0px;
  1696. position:absolute;
  1697. left:163px;
  1698. top:79px;
  1699. width:73px;
  1700. height:25px;
  1701. display:flex;
  1702. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1703. font-weight:500;
  1704. font-style:normal;
  1705. font-size:18px;
  1706. }
  1707. #u37030 .text {
  1708. position:absolute;
  1709. align-self:flex-start;
  1710. padding:0px 0px 0px 0px;
  1711. box-sizing:border-box;
  1712. width:100%;
  1713. }
  1714. #u37030_text {
  1715. border-width:0px;
  1716. white-space:nowrap;
  1717. text-transform:none;
  1718. }
  1719. #u37031 {
  1720. border-width:0px;
  1721. position:absolute;
  1722. left:0px;
  1723. top:0px;
  1724. width:0px;
  1725. height:0px;
  1726. }
  1727. #u37032_div {
  1728. border-width:0px;
  1729. position:absolute;
  1730. left:0px;
  1731. top:0px;
  1732. width:353px;
  1733. height:160px;
  1734. background:inherit;
  1735. background-color:rgba(255, 255, 255, 1);
  1736. border:none;
  1737. border-radius:4px;
  1738. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1739. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1740. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1741. }
  1742. #u37032 {
  1743. border-width:0px;
  1744. position:absolute;
  1745. left:163px;
  1746. top:114px;
  1747. width:353px;
  1748. height:160px;
  1749. display:flex;
  1750. }
  1751. #u37032 .text {
  1752. position:absolute;
  1753. align-self:center;
  1754. padding:2px 2px 2px 2px;
  1755. box-sizing:border-box;
  1756. width:100%;
  1757. }
  1758. #u37032_text {
  1759. border-width:0px;
  1760. word-wrap:break-word;
  1761. text-transform:none;
  1762. visibility:hidden;
  1763. }
  1764. #u37033_div {
  1765. border-width:0px;
  1766. position:absolute;
  1767. left:0px;
  1768. top:0px;
  1769. width:109px;
  1770. height:25px;
  1771. background:inherit;
  1772. background-color:rgba(255, 255, 255, 0);
  1773. border:none;
  1774. border-radius:0px;
  1775. -moz-box-shadow:none;
  1776. -webkit-box-shadow:none;
  1777. box-shadow:none;
  1778. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1779. font-weight:500;
  1780. font-style:normal;
  1781. font-size:18px;
  1782. }
  1783. #u37033 {
  1784. border-width:0px;
  1785. position:absolute;
  1786. left:187px;
  1787. top:125px;
  1788. width:109px;
  1789. height:25px;
  1790. display:flex;
  1791. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1792. font-weight:500;
  1793. font-style:normal;
  1794. font-size:18px;
  1795. }
  1796. #u37033 .text {
  1797. position:absolute;
  1798. align-self:flex-start;
  1799. padding:0px 0px 0px 0px;
  1800. box-sizing:border-box;
  1801. width:100%;
  1802. }
  1803. #u37033_text {
  1804. border-width:0px;
  1805. white-space:nowrap;
  1806. text-transform:none;
  1807. }
  1808. #u37034_div {
  1809. border-width:0px;
  1810. position:absolute;
  1811. left:0px;
  1812. top:0px;
  1813. width:217px;
  1814. height:75px;
  1815. background:inherit;
  1816. background-color:rgba(255, 255, 255, 0);
  1817. border:none;
  1818. border-radius:0px;
  1819. -moz-box-shadow:none;
  1820. -webkit-box-shadow:none;
  1821. box-shadow:none;
  1822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1823. font-weight:400;
  1824. font-style:normal;
  1825. font-size:12px;
  1826. line-height:25px;
  1827. }
  1828. #u37034 {
  1829. border-width:0px;
  1830. position:absolute;
  1831. left:202px;
  1832. top:188px;
  1833. width:217px;
  1834. height:75px;
  1835. display:flex;
  1836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1837. font-weight:400;
  1838. font-style:normal;
  1839. font-size:12px;
  1840. line-height:25px;
  1841. }
  1842. #u37034 .text {
  1843. position:absolute;
  1844. align-self:flex-start;
  1845. padding:0px 0px 0px 0px;
  1846. box-sizing:border-box;
  1847. width:100%;
  1848. }
  1849. #u37034_text {
  1850. border-width:0px;
  1851. white-space:nowrap;
  1852. text-transform:none;
  1853. }
  1854. #u37035_div {
  1855. border-width:0px;
  1856. position:absolute;
  1857. left:0px;
  1858. top:0px;
  1859. width:36px;
  1860. height:20px;
  1861. background:inherit;
  1862. background-color:rgba(51, 51, 51, 1);
  1863. border:none;
  1864. border-left:0px;
  1865. border-radius:7px;
  1866. border-top-left-radius:0px;
  1867. border-bottom-left-radius:0px;
  1868. -moz-box-shadow:none;
  1869. -webkit-box-shadow:none;
  1870. box-shadow:none;
  1871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1872. font-weight:400;
  1873. font-style:normal;
  1874. font-size:12px;
  1875. color:#FFFFFF;
  1876. line-height:20px;
  1877. }
  1878. #u37035 {
  1879. border-width:0px;
  1880. position:absolute;
  1881. left:163px;
  1882. top:114px;
  1883. width:36px;
  1884. height:20px;
  1885. display:flex;
  1886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1887. font-weight:400;
  1888. font-style:normal;
  1889. font-size:12px;
  1890. color:#FFFFFF;
  1891. line-height:20px;
  1892. }
  1893. #u37035 .text {
  1894. position:absolute;
  1895. align-self:center;
  1896. padding:0px 0px 0px 5px;
  1897. box-sizing:border-box;
  1898. width:100%;
  1899. }
  1900. #u37035_text {
  1901. border-width:0px;
  1902. word-wrap:break-word;
  1903. text-transform:none;
  1904. }
  1905. #u37036_img {
  1906. border-width:0px;
  1907. position:absolute;
  1908. left:0px;
  1909. top:0px;
  1910. width:9px;
  1911. height:14px;
  1912. }
  1913. #u37036 {
  1914. border-width:0px;
  1915. position:absolute;
  1916. left:187px;
  1917. top:158px;
  1918. width:9px;
  1919. height:14px;
  1920. display:flex;
  1921. }
  1922. #u37036 .text {
  1923. position:absolute;
  1924. align-self:center;
  1925. padding:2px 2px 2px 2px;
  1926. box-sizing:border-box;
  1927. width:100%;
  1928. }
  1929. #u37036_text {
  1930. border-width:0px;
  1931. word-wrap:break-word;
  1932. text-transform:none;
  1933. visibility:hidden;
  1934. }
  1935. #u37037_div {
  1936. border-width:0px;
  1937. position:absolute;
  1938. left:0px;
  1939. top:0px;
  1940. width:260px;
  1941. height:20px;
  1942. background:inherit;
  1943. background-color:rgba(255, 255, 255, 0);
  1944. border:none;
  1945. border-radius:0px;
  1946. -moz-box-shadow:none;
  1947. -webkit-box-shadow:none;
  1948. box-shadow:none;
  1949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1950. font-weight:400;
  1951. font-style:normal;
  1952. font-size:12px;
  1953. line-height:20px;
  1954. }
  1955. #u37037 {
  1956. border-width:0px;
  1957. position:absolute;
  1958. left:202px;
  1959. top:155px;
  1960. width:260px;
  1961. height:20px;
  1962. display:flex;
  1963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1964. font-weight:400;
  1965. font-style:normal;
  1966. font-size:12px;
  1967. line-height:20px;
  1968. }
  1969. #u37037 .text {
  1970. position:absolute;
  1971. align-self:flex-start;
  1972. padding:0px 0px 0px 0px;
  1973. box-sizing:border-box;
  1974. width:100%;
  1975. }
  1976. #u37037_text {
  1977. border-width:0px;
  1978. white-space:nowrap;
  1979. text-transform:none;
  1980. }
  1981. #u37038_div {
  1982. border-width:0px;
  1983. position:absolute;
  1984. left:0px;
  1985. top:0px;
  1986. width:40px;
  1987. height:24px;
  1988. background:inherit;
  1989. background-color:rgba(255, 255, 255, 0);
  1990. box-sizing:border-box;
  1991. border-width:1px;
  1992. border-style:solid;
  1993. border-color:rgba(24, 144, 255, 1);
  1994. border-radius:2px;
  1995. -moz-box-shadow:none;
  1996. -webkit-box-shadow:none;
  1997. box-shadow:none;
  1998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1999. font-weight:400;
  2000. font-style:normal;
  2001. font-size:12px;
  2002. color:#1890FF;
  2003. text-align:center;
  2004. line-height:20px;
  2005. }
  2006. #u37038 {
  2007. border-width:0px;
  2008. position:absolute;
  2009. left:466px;
  2010. top:124px;
  2011. width:40px;
  2012. height:24px;
  2013. display:flex;
  2014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2015. font-weight:400;
  2016. font-style:normal;
  2017. font-size:12px;
  2018. color:#1890FF;
  2019. text-align:center;
  2020. line-height:20px;
  2021. }
  2022. #u37038 .text {
  2023. position:absolute;
  2024. align-self:flex-start;
  2025. padding:2px 2px 2px 2px;
  2026. box-sizing:border-box;
  2027. width:100%;
  2028. }
  2029. #u37038_text {
  2030. border-width:0px;
  2031. word-wrap:break-word;
  2032. text-transform:none;
  2033. }
  2034. #u37039_img {
  2035. border-width:0px;
  2036. position:absolute;
  2037. left:0px;
  2038. top:0px;
  2039. width:160px;
  2040. height:160px;
  2041. }
  2042. #u37039 {
  2043. border-width:0px;
  2044. position:absolute;
  2045. left:909px;
  2046. top:114px;
  2047. width:160px;
  2048. height:160px;
  2049. display:flex;
  2050. font-size:18px;
  2051. color:#1890FF;
  2052. }
  2053. #u37039 .text {
  2054. position:absolute;
  2055. align-self:center;
  2056. padding:2px 2px 2px 2px;
  2057. box-sizing:border-box;
  2058. width:100%;
  2059. }
  2060. #u37039_text {
  2061. border-width:0px;
  2062. word-wrap:break-word;
  2063. text-transform:none;
  2064. }
  2065. #u37040 {
  2066. border-width:0px;
  2067. position:absolute;
  2068. left:0px;
  2069. top:0px;
  2070. width:0px;
  2071. height:0px;
  2072. }
  2073. #u37041_div {
  2074. border-width:0px;
  2075. position:absolute;
  2076. left:0px;
  2077. top:0px;
  2078. width:1000px;
  2079. height:1190px;
  2080. background:inherit;
  2081. background-color:rgba(255, 255, 255, 1);
  2082. box-sizing:border-box;
  2083. border-width:1px;
  2084. border-style:solid;
  2085. border-color:rgba(215, 215, 215, 1);
  2086. border-radius:0px;
  2087. -moz-box-shadow:none;
  2088. -webkit-box-shadow:none;
  2089. box-shadow:none;
  2090. }
  2091. #u37041 {
  2092. border-width:0px;
  2093. position:absolute;
  2094. left:1629px;
  2095. top:48px;
  2096. width:1000px;
  2097. height:1190px;
  2098. display:flex;
  2099. }
  2100. #u37041 .text {
  2101. position:absolute;
  2102. align-self:center;
  2103. padding:2px 2px 2px 2px;
  2104. box-sizing:border-box;
  2105. width:100%;
  2106. }
  2107. #u37041_text {
  2108. border-width:0px;
  2109. word-wrap:break-word;
  2110. text-transform:none;
  2111. visibility:hidden;
  2112. }
  2113. #u37042_div {
  2114. border-width:0px;
  2115. position:absolute;
  2116. left:0px;
  2117. top:0px;
  2118. width:73px;
  2119. height:30px;
  2120. background:inherit;
  2121. background-color:rgba(255, 255, 255, 0);
  2122. border:none;
  2123. border-radius:0px;
  2124. -moz-box-shadow:none;
  2125. -webkit-box-shadow:none;
  2126. box-shadow:none;
  2127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2128. font-weight:400;
  2129. font-style:normal;
  2130. font-size:18px;
  2131. color:#000000;
  2132. line-height:30px;
  2133. }
  2134. #u37042 {
  2135. border-width:0px;
  2136. position:absolute;
  2137. left:1649px;
  2138. top:68px;
  2139. width:73px;
  2140. height:30px;
  2141. display:flex;
  2142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2143. font-weight:400;
  2144. font-style:normal;
  2145. font-size:18px;
  2146. color:#000000;
  2147. line-height:30px;
  2148. }
  2149. #u37042 .text {
  2150. position:absolute;
  2151. align-self:flex-start;
  2152. padding:0px 0px 0px 0px;
  2153. box-sizing:border-box;
  2154. width:100%;
  2155. }
  2156. #u37042_text {
  2157. border-width:0px;
  2158. white-space:nowrap;
  2159. text-transform:none;
  2160. }
  2161. #u37043_div {
  2162. border-width:0px;
  2163. position:absolute;
  2164. left:0px;
  2165. top:0px;
  2166. width:88px;
  2167. height:30px;
  2168. background:inherit;
  2169. background-color:rgba(255, 255, 255, 0);
  2170. border:none;
  2171. border-top:0px;
  2172. border-right:0px;
  2173. border-bottom:0px;
  2174. border-radius:0px;
  2175. border-top-left-radius:0px;
  2176. border-bottom-left-radius:0px;
  2177. -moz-box-shadow:none;
  2178. -webkit-box-shadow:none;
  2179. box-shadow:none;
  2180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2181. font-weight:400;
  2182. font-style:normal;
  2183. font-size:14px;
  2184. }
  2185. #u37043 {
  2186. border-width:0px;
  2187. position:absolute;
  2188. left:1988px;
  2189. top:158px;
  2190. width:88px;
  2191. height:30px;
  2192. display:flex;
  2193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2194. font-weight:400;
  2195. font-style:normal;
  2196. font-size:14px;
  2197. }
  2198. #u37043 .text {
  2199. position:absolute;
  2200. align-self:center;
  2201. padding:5px 10px 5px 0px;
  2202. box-sizing:border-box;
  2203. width:100%;
  2204. }
  2205. #u37043_text {
  2206. border-width:0px;
  2207. white-space:nowrap;
  2208. text-transform:none;
  2209. }
  2210. #u37044 {
  2211. border-width:0px;
  2212. position:absolute;
  2213. left:0px;
  2214. top:0px;
  2215. width:0px;
  2216. height:0px;
  2217. }
  2218. #u37045_div {
  2219. border-width:0px;
  2220. position:absolute;
  2221. left:0px;
  2222. top:0px;
  2223. width:280px;
  2224. height:40px;
  2225. background:inherit;
  2226. background-color:rgba(255, 255, 255, 1);
  2227. box-sizing:border-box;
  2228. border-width:1px;
  2229. border-style:solid;
  2230. border-color:rgba(170, 170, 170, 1);
  2231. border-radius:4px;
  2232. -moz-box-shadow:none;
  2233. -webkit-box-shadow:none;
  2234. box-shadow:none;
  2235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2236. font-weight:400;
  2237. font-style:normal;
  2238. text-align:left;
  2239. }
  2240. #u37045 {
  2241. border-width:0px;
  2242. position:absolute;
  2243. left:1988px;
  2244. top:188px;
  2245. width:280px;
  2246. height:40px;
  2247. display:flex;
  2248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2249. font-weight:400;
  2250. font-style:normal;
  2251. text-align:left;
  2252. }
  2253. #u37045 .text {
  2254. position:absolute;
  2255. align-self:center;
  2256. padding:2px 2px 2px 10px;
  2257. box-sizing:border-box;
  2258. width:100%;
  2259. }
  2260. #u37045_text {
  2261. border-width:0px;
  2262. word-wrap:break-word;
  2263. text-transform:none;
  2264. visibility:hidden;
  2265. }
  2266. #u37046_input {
  2267. position:absolute;
  2268. left:0px;
  2269. top:0px;
  2270. width:132px;
  2271. height:31px;
  2272. padding:2px 2px 2px 2px;
  2273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2274. font-weight:400;
  2275. font-style:normal;
  2276. font-size:13px;
  2277. letter-spacing:normal;
  2278. color:#AAAAAA;
  2279. vertical-align:none;
  2280. text-align:left;
  2281. text-transform:none;
  2282. background-color:transparent;
  2283. border-color:transparent;
  2284. }
  2285. #u37046_input.disabled {
  2286. position:absolute;
  2287. left:0px;
  2288. top:0px;
  2289. width:132px;
  2290. height:31px;
  2291. padding:2px 2px 2px 2px;
  2292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2293. font-weight:400;
  2294. font-style:normal;
  2295. font-size:13px;
  2296. letter-spacing:normal;
  2297. color:#AAAAAA;
  2298. vertical-align:none;
  2299. text-align:left;
  2300. text-transform:none;
  2301. background-color:transparent;
  2302. border-color:transparent;
  2303. }
  2304. #u37046_div {
  2305. border-width:0px;
  2306. position:absolute;
  2307. left:0px;
  2308. top:0px;
  2309. width:132px;
  2310. height:31px;
  2311. background:inherit;
  2312. background-color:rgba(255, 255, 255, 0);
  2313. border:none;
  2314. border-radius:0px;
  2315. -moz-box-shadow:none;
  2316. -webkit-box-shadow:none;
  2317. box-shadow:none;
  2318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2319. font-weight:400;
  2320. font-style:normal;
  2321. color:#AAAAAA;
  2322. }
  2323. #u37046 {
  2324. border-width:0px;
  2325. position:absolute;
  2326. left:1995px;
  2327. top:193px;
  2328. width:132px;
  2329. height:31px;
  2330. display:flex;
  2331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2332. font-weight:400;
  2333. font-style:normal;
  2334. color:#AAAAAA;
  2335. }
  2336. #u37046 .text {
  2337. position:absolute;
  2338. align-self:center;
  2339. padding:2px 2px 2px 2px;
  2340. box-sizing:border-box;
  2341. width:100%;
  2342. }
  2343. #u37046_div.disabled {
  2344. border-width:0px;
  2345. position:absolute;
  2346. left:0px;
  2347. top:0px;
  2348. width:132px;
  2349. height:31px;
  2350. background:inherit;
  2351. background-color:rgba(240, 240, 240, 1);
  2352. border:none;
  2353. border-radius:0px;
  2354. -moz-box-shadow:none;
  2355. -webkit-box-shadow:none;
  2356. box-shadow:none;
  2357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2358. font-weight:400;
  2359. font-style:normal;
  2360. color:#AAAAAA;
  2361. }
  2362. #u37046.disabled {
  2363. }
  2364. #u37047 {
  2365. border-width:0px;
  2366. position:absolute;
  2367. left:0px;
  2368. top:0px;
  2369. width:0px;
  2370. height:0px;
  2371. }
  2372. #u37048_div {
  2373. border-width:0px;
  2374. position:absolute;
  2375. left:0px;
  2376. top:0px;
  2377. width:40px;
  2378. height:40px;
  2379. background:inherit;
  2380. background-color:rgba(255, 255, 255, 0);
  2381. border:none;
  2382. border-top:0px;
  2383. border-right:0px;
  2384. border-bottom:0px;
  2385. border-radius:0px;
  2386. border-top-left-radius:0px;
  2387. border-bottom-left-radius:0px;
  2388. -moz-box-shadow:none;
  2389. -webkit-box-shadow:none;
  2390. box-shadow:none;
  2391. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2392. font-weight:500;
  2393. font-style:normal;
  2394. font-size:18px;
  2395. text-align:center;
  2396. }
  2397. #u37048 {
  2398. border-width:0px;
  2399. position:absolute;
  2400. left:2589px;
  2401. top:48px;
  2402. width:40px;
  2403. height:40px;
  2404. display:flex;
  2405. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2406. font-weight:500;
  2407. font-style:normal;
  2408. font-size:18px;
  2409. text-align:center;
  2410. }
  2411. #u37048 .text {
  2412. position:absolute;
  2413. align-self:center;
  2414. padding:5px 10px 5px 0px;
  2415. box-sizing:border-box;
  2416. width:100%;
  2417. }
  2418. #u37048_text {
  2419. border-width:0px;
  2420. word-wrap:break-word;
  2421. text-transform:none;
  2422. }
  2423. #u37049_img {
  2424. border-width:0px;
  2425. position:absolute;
  2426. left:0px;
  2427. top:0px;
  2428. width:13px;
  2429. height:13px;
  2430. }
  2431. #u37049 {
  2432. border-width:0px;
  2433. position:absolute;
  2434. left:2576px;
  2435. top:66px;
  2436. width:13px;
  2437. height:13px;
  2438. display:flex;
  2439. }
  2440. #u37049 .text {
  2441. position:absolute;
  2442. align-self:center;
  2443. padding:2px 2px 2px 2px;
  2444. box-sizing:border-box;
  2445. width:100%;
  2446. }
  2447. #u37049_text {
  2448. border-width:0px;
  2449. word-wrap:break-word;
  2450. text-transform:none;
  2451. visibility:hidden;
  2452. }
  2453. #u37050 {
  2454. border-width:0px;
  2455. position:absolute;
  2456. left:0px;
  2457. top:0px;
  2458. width:0px;
  2459. height:0px;
  2460. }
  2461. #u37051_div {
  2462. border-width:0px;
  2463. position:absolute;
  2464. left:0px;
  2465. top:0px;
  2466. width:1000px;
  2467. height:60px;
  2468. background:inherit;
  2469. background-color:rgba(255, 255, 255, 1);
  2470. box-sizing:border-box;
  2471. border-width:1px;
  2472. border-style:solid;
  2473. border-color:rgba(215, 215, 215, 1);
  2474. border-radius:0px;
  2475. -moz-box-shadow:none;
  2476. -webkit-box-shadow:none;
  2477. box-shadow:none;
  2478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2479. font-weight:400;
  2480. font-style:normal;
  2481. font-size:14px;
  2482. color:#AAAAAA;
  2483. text-align:center;
  2484. line-height:30px;
  2485. }
  2486. #u37051 {
  2487. border-width:0px;
  2488. position:absolute;
  2489. left:1629px;
  2490. top:1178px;
  2491. width:1000px;
  2492. height:60px;
  2493. display:flex;
  2494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2495. font-weight:400;
  2496. font-style:normal;
  2497. font-size:14px;
  2498. color:#AAAAAA;
  2499. text-align:center;
  2500. line-height:30px;
  2501. }
  2502. #u37051 .text {
  2503. position:absolute;
  2504. align-self:center;
  2505. padding:5px 10px 5px 10px;
  2506. box-sizing:border-box;
  2507. width:100%;
  2508. }
  2509. #u37051_text {
  2510. border-width:0px;
  2511. word-wrap:break-word;
  2512. text-transform:none;
  2513. visibility:hidden;
  2514. }
  2515. #u37052_div {
  2516. border-width:0px;
  2517. position:absolute;
  2518. left:0px;
  2519. top:0px;
  2520. width:80px;
  2521. height:30px;
  2522. background:inherit;
  2523. background-color:rgba(24, 144, 255, 1);
  2524. border:none;
  2525. border-radius:4px;
  2526. -moz-box-shadow:none;
  2527. -webkit-box-shadow:none;
  2528. box-shadow:none;
  2529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2530. font-weight:400;
  2531. font-style:normal;
  2532. font-size:14px;
  2533. color:#FFFFFF;
  2534. }
  2535. #u37052 {
  2536. border-width:0px;
  2537. position:absolute;
  2538. left:2504px;
  2539. top:1193px;
  2540. width:80px;
  2541. height:30px;
  2542. display:flex;
  2543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2544. font-weight:400;
  2545. font-style:normal;
  2546. font-size:14px;
  2547. color:#FFFFFF;
  2548. }
  2549. #u37052 .text {
  2550. position:absolute;
  2551. align-self:center;
  2552. padding:2px 2px 2px 2px;
  2553. box-sizing:border-box;
  2554. width:100%;
  2555. }
  2556. #u37052_text {
  2557. border-width:0px;
  2558. word-wrap:break-word;
  2559. text-transform:none;
  2560. }
  2561. #u37053_div {
  2562. border-width:0px;
  2563. position:absolute;
  2564. left:0px;
  2565. top:0px;
  2566. width:80px;
  2567. height:30px;
  2568. background:inherit;
  2569. background-color:rgba(255, 255, 255, 1);
  2570. box-sizing:border-box;
  2571. border-width:1px;
  2572. border-style:solid;
  2573. border-color:rgba(170, 170, 170, 1);
  2574. border-radius:4px;
  2575. -moz-box-shadow:none;
  2576. -webkit-box-shadow:none;
  2577. box-shadow:none;
  2578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2579. font-weight:400;
  2580. font-style:normal;
  2581. font-size:14px;
  2582. }
  2583. #u37053 {
  2584. border-width:0px;
  2585. position:absolute;
  2586. left:2414px;
  2587. top:1193px;
  2588. width:80px;
  2589. height:30px;
  2590. display:flex;
  2591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2592. font-weight:400;
  2593. font-style:normal;
  2594. font-size:14px;
  2595. }
  2596. #u37053 .text {
  2597. position:absolute;
  2598. align-self:center;
  2599. padding:2px 2px 2px 2px;
  2600. box-sizing:border-box;
  2601. width:100%;
  2602. }
  2603. #u37053_text {
  2604. border-width:0px;
  2605. word-wrap:break-word;
  2606. text-transform:none;
  2607. }
  2608. #u37054_div {
  2609. border-width:0px;
  2610. position:absolute;
  2611. left:0px;
  2612. top:0px;
  2613. width:186px;
  2614. height:50px;
  2615. background:inherit;
  2616. background-color:rgba(255, 255, 255, 0);
  2617. border:none;
  2618. border-top:0px;
  2619. border-right:0px;
  2620. border-bottom:0px;
  2621. border-radius:0px;
  2622. border-top-left-radius:0px;
  2623. border-bottom-left-radius:0px;
  2624. -moz-box-shadow:none;
  2625. -webkit-box-shadow:none;
  2626. box-shadow:none;
  2627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2628. font-weight:400;
  2629. font-style:normal;
  2630. font-size:12px;
  2631. color:#AAAAAA;
  2632. line-height:20px;
  2633. }
  2634. #u37054 {
  2635. border-width:0px;
  2636. position:absolute;
  2637. left:2078px;
  2638. top:428px;
  2639. width:186px;
  2640. height:50px;
  2641. display:flex;
  2642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2643. font-weight:400;
  2644. font-style:normal;
  2645. font-size:12px;
  2646. color:#AAAAAA;
  2647. line-height:20px;
  2648. }
  2649. #u37054 .text {
  2650. position:absolute;
  2651. align-self:center;
  2652. padding:5px 10px 5px 0px;
  2653. box-sizing:border-box;
  2654. width:100%;
  2655. }
  2656. #u37054_text {
  2657. border-width:0px;
  2658. word-wrap:break-word;
  2659. text-transform:none;
  2660. }
  2661. #u37055_div {
  2662. border-width:0px;
  2663. position:absolute;
  2664. left:0px;
  2665. top:0px;
  2666. width:81px;
  2667. height:30px;
  2668. background:inherit;
  2669. background-color:rgba(255, 255, 255, 0);
  2670. border:none;
  2671. border-top:0px;
  2672. border-right:0px;
  2673. border-bottom:0px;
  2674. border-radius:0px;
  2675. border-top-left-radius:0px;
  2676. border-bottom-left-radius:0px;
  2677. -moz-box-shadow:none;
  2678. -webkit-box-shadow:none;
  2679. box-shadow:none;
  2680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2681. font-weight:400;
  2682. font-style:normal;
  2683. font-size:14px;
  2684. }
  2685. #u37055 {
  2686. border-width:0px;
  2687. position:absolute;
  2688. left:1668px;
  2689. top:158px;
  2690. width:81px;
  2691. height:30px;
  2692. display:flex;
  2693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2694. font-weight:400;
  2695. font-style:normal;
  2696. font-size:14px;
  2697. }
  2698. #u37055 .text {
  2699. position:absolute;
  2700. align-self:center;
  2701. padding:5px 10px 5px 0px;
  2702. box-sizing:border-box;
  2703. width:100%;
  2704. }
  2705. #u37055_text {
  2706. border-width:0px;
  2707. white-space:nowrap;
  2708. text-transform:none;
  2709. }
  2710. #u37056 {
  2711. border-width:0px;
  2712. position:absolute;
  2713. left:0px;
  2714. top:0px;
  2715. width:0px;
  2716. height:0px;
  2717. }
  2718. #u37057_div {
  2719. border-width:0px;
  2720. position:absolute;
  2721. left:0px;
  2722. top:0px;
  2723. width:280px;
  2724. height:40px;
  2725. background:inherit;
  2726. background-color:rgba(242, 242, 242, 1);
  2727. box-sizing:border-box;
  2728. border-width:1px;
  2729. border-style:solid;
  2730. border-color:rgba(170, 170, 170, 1);
  2731. border-radius:4px;
  2732. -moz-box-shadow:none;
  2733. -webkit-box-shadow:none;
  2734. box-shadow:none;
  2735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2736. font-weight:400;
  2737. font-style:normal;
  2738. text-align:left;
  2739. }
  2740. #u37057 {
  2741. border-width:0px;
  2742. position:absolute;
  2743. left:1668px;
  2744. top:188px;
  2745. width:280px;
  2746. height:40px;
  2747. display:flex;
  2748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2749. font-weight:400;
  2750. font-style:normal;
  2751. text-align:left;
  2752. }
  2753. #u37057 .text {
  2754. position:absolute;
  2755. align-self:center;
  2756. padding:2px 2px 2px 10px;
  2757. box-sizing:border-box;
  2758. width:100%;
  2759. }
  2760. #u37057_text {
  2761. border-width:0px;
  2762. word-wrap:break-word;
  2763. text-transform:none;
  2764. visibility:hidden;
  2765. }
  2766. #u37058_input {
  2767. position:absolute;
  2768. left:0px;
  2769. top:0px;
  2770. width:132px;
  2771. height:31px;
  2772. padding:2px 2px 2px 2px;
  2773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2774. font-weight:400;
  2775. font-style:normal;
  2776. font-size:13px;
  2777. letter-spacing:normal;
  2778. color:#AAAAAA;
  2779. vertical-align:none;
  2780. text-align:left;
  2781. text-transform:none;
  2782. background-color:transparent;
  2783. border-color:transparent;
  2784. }
  2785. #u37058_input.disabled {
  2786. position:absolute;
  2787. left:0px;
  2788. top:0px;
  2789. width:132px;
  2790. height:31px;
  2791. padding:2px 2px 2px 2px;
  2792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2793. font-weight:400;
  2794. font-style:normal;
  2795. font-size:13px;
  2796. letter-spacing:normal;
  2797. color:#AAAAAA;
  2798. vertical-align:none;
  2799. text-align:left;
  2800. text-transform:none;
  2801. background-color:transparent;
  2802. border-color:transparent;
  2803. }
  2804. #u37058_div {
  2805. border-width:0px;
  2806. position:absolute;
  2807. left:0px;
  2808. top:0px;
  2809. width:132px;
  2810. height:31px;
  2811. background:inherit;
  2812. background-color:rgba(242, 242, 242, 1);
  2813. border:none;
  2814. border-radius:0px;
  2815. -moz-box-shadow:none;
  2816. -webkit-box-shadow:none;
  2817. box-shadow:none;
  2818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2819. font-weight:400;
  2820. font-style:normal;
  2821. color:#AAAAAA;
  2822. }
  2823. #u37058 {
  2824. border-width:0px;
  2825. position:absolute;
  2826. left:1675px;
  2827. top:193px;
  2828. width:132px;
  2829. height:31px;
  2830. display:flex;
  2831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2832. font-weight:400;
  2833. font-style:normal;
  2834. color:#AAAAAA;
  2835. }
  2836. #u37058 .text {
  2837. position:absolute;
  2838. align-self:center;
  2839. padding:2px 2px 2px 2px;
  2840. box-sizing:border-box;
  2841. width:100%;
  2842. }
  2843. #u37058_div.disabled {
  2844. border-width:0px;
  2845. position:absolute;
  2846. left:0px;
  2847. top:0px;
  2848. width:132px;
  2849. height:31px;
  2850. background:inherit;
  2851. background-color:rgba(240, 240, 240, 1);
  2852. border:none;
  2853. border-radius:0px;
  2854. -moz-box-shadow:none;
  2855. -webkit-box-shadow:none;
  2856. box-shadow:none;
  2857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2858. font-weight:400;
  2859. font-style:normal;
  2860. color:#AAAAAA;
  2861. }
  2862. #u37058.disabled {
  2863. }
  2864. #u37059_div {
  2865. border-width:0px;
  2866. position:absolute;
  2867. left:0px;
  2868. top:0px;
  2869. width:83px;
  2870. height:35px;
  2871. background:inherit;
  2872. background-color:rgba(255, 255, 255, 0);
  2873. border:none;
  2874. border-top:0px;
  2875. border-right:0px;
  2876. border-bottom:0px;
  2877. border-radius:0px;
  2878. border-top-left-radius:0px;
  2879. border-bottom-left-radius:0px;
  2880. -moz-box-shadow:none;
  2881. -webkit-box-shadow:none;
  2882. box-shadow:none;
  2883. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2884. font-weight:500;
  2885. font-style:normal;
  2886. font-size:18px;
  2887. }
  2888. #u37059 {
  2889. border-width:0px;
  2890. position:absolute;
  2891. left:1668px;
  2892. top:116px;
  2893. width:83px;
  2894. height:35px;
  2895. display:flex;
  2896. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2897. font-weight:500;
  2898. font-style:normal;
  2899. font-size:18px;
  2900. }
  2901. #u37059 .text {
  2902. position:absolute;
  2903. align-self:center;
  2904. padding:5px 10px 5px 0px;
  2905. box-sizing:border-box;
  2906. width:100%;
  2907. }
  2908. #u37059_text {
  2909. border-width:0px;
  2910. white-space:nowrap;
  2911. text-transform:none;
  2912. }
  2913. #u37060_div {
  2914. border-width:0px;
  2915. position:absolute;
  2916. left:0px;
  2917. top:0px;
  2918. width:67px;
  2919. height:30px;
  2920. background:inherit;
  2921. background-color:rgba(255, 255, 255, 0);
  2922. border:none;
  2923. border-top:0px;
  2924. border-right:0px;
  2925. border-bottom:0px;
  2926. border-radius:0px;
  2927. border-top-left-radius:0px;
  2928. border-bottom-left-radius:0px;
  2929. -moz-box-shadow:none;
  2930. -webkit-box-shadow:none;
  2931. box-shadow:none;
  2932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2933. font-weight:400;
  2934. font-style:normal;
  2935. font-size:14px;
  2936. }
  2937. #u37060 {
  2938. border-width:0px;
  2939. position:absolute;
  2940. left:1988px;
  2941. top:238px;
  2942. width:67px;
  2943. height:30px;
  2944. display:flex;
  2945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2946. font-weight:400;
  2947. font-style:normal;
  2948. font-size:14px;
  2949. }
  2950. #u37060 .text {
  2951. position:absolute;
  2952. align-self:center;
  2953. padding:5px 10px 5px 0px;
  2954. box-sizing:border-box;
  2955. width:100%;
  2956. }
  2957. #u37060_text {
  2958. border-width:0px;
  2959. white-space:nowrap;
  2960. text-transform:none;
  2961. }
  2962. #u37061 {
  2963. border-width:0px;
  2964. position:absolute;
  2965. left:0px;
  2966. top:0px;
  2967. width:0px;
  2968. height:0px;
  2969. }
  2970. #u37062_div {
  2971. border-width:0px;
  2972. position:absolute;
  2973. left:0px;
  2974. top:0px;
  2975. width:280px;
  2976. height:40px;
  2977. background:inherit;
  2978. background-color:rgba(255, 255, 255, 1);
  2979. box-sizing:border-box;
  2980. border-width:1px;
  2981. border-style:solid;
  2982. border-color:rgba(170, 170, 170, 1);
  2983. border-radius:4px;
  2984. -moz-box-shadow:none;
  2985. -webkit-box-shadow:none;
  2986. box-shadow:none;
  2987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2988. font-weight:400;
  2989. font-style:normal;
  2990. text-align:left;
  2991. }
  2992. #u37062 {
  2993. border-width:0px;
  2994. position:absolute;
  2995. left:1988px;
  2996. top:268px;
  2997. width:280px;
  2998. height:40px;
  2999. display:flex;
  3000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3001. font-weight:400;
  3002. font-style:normal;
  3003. text-align:left;
  3004. }
  3005. #u37062 .text {
  3006. position:absolute;
  3007. align-self:center;
  3008. padding:2px 2px 2px 10px;
  3009. box-sizing:border-box;
  3010. width:100%;
  3011. }
  3012. #u37062_text {
  3013. border-width:0px;
  3014. word-wrap:break-word;
  3015. text-transform:none;
  3016. visibility:hidden;
  3017. }
  3018. #u37063_input {
  3019. position:absolute;
  3020. left:0px;
  3021. top:0px;
  3022. width:132px;
  3023. height:31px;
  3024. padding:2px 2px 2px 2px;
  3025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3026. font-weight:400;
  3027. font-style:normal;
  3028. font-size:13px;
  3029. letter-spacing:normal;
  3030. color:#AAAAAA;
  3031. vertical-align:none;
  3032. text-align:left;
  3033. text-transform:none;
  3034. background-color:transparent;
  3035. border-color:transparent;
  3036. }
  3037. #u37063_input.disabled {
  3038. position:absolute;
  3039. left:0px;
  3040. top:0px;
  3041. width:132px;
  3042. height:31px;
  3043. padding:2px 2px 2px 2px;
  3044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3045. font-weight:400;
  3046. font-style:normal;
  3047. font-size:13px;
  3048. letter-spacing:normal;
  3049. color:#AAAAAA;
  3050. vertical-align:none;
  3051. text-align:left;
  3052. text-transform:none;
  3053. background-color:transparent;
  3054. border-color:transparent;
  3055. }
  3056. #u37063_div {
  3057. border-width:0px;
  3058. position:absolute;
  3059. left:0px;
  3060. top:0px;
  3061. width:132px;
  3062. height:31px;
  3063. background:inherit;
  3064. background-color:rgba(255, 255, 255, 0);
  3065. border:none;
  3066. border-radius:0px;
  3067. -moz-box-shadow:none;
  3068. -webkit-box-shadow:none;
  3069. box-shadow:none;
  3070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3071. font-weight:400;
  3072. font-style:normal;
  3073. color:#AAAAAA;
  3074. }
  3075. #u37063 {
  3076. border-width:0px;
  3077. position:absolute;
  3078. left:1995px;
  3079. top:273px;
  3080. width:132px;
  3081. height:31px;
  3082. display:flex;
  3083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3084. font-weight:400;
  3085. font-style:normal;
  3086. color:#AAAAAA;
  3087. }
  3088. #u37063 .text {
  3089. position:absolute;
  3090. align-self:center;
  3091. padding:2px 2px 2px 2px;
  3092. box-sizing:border-box;
  3093. width:100%;
  3094. }
  3095. #u37063_div.disabled {
  3096. border-width:0px;
  3097. position:absolute;
  3098. left:0px;
  3099. top:0px;
  3100. width:132px;
  3101. height:31px;
  3102. background:inherit;
  3103. background-color:rgba(240, 240, 240, 1);
  3104. border:none;
  3105. border-radius:0px;
  3106. -moz-box-shadow:none;
  3107. -webkit-box-shadow:none;
  3108. box-shadow:none;
  3109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3110. font-weight:400;
  3111. font-style:normal;
  3112. color:#AAAAAA;
  3113. }
  3114. #u37063.disabled {
  3115. }
  3116. #u37064_div {
  3117. border-width:0px;
  3118. position:absolute;
  3119. left:0px;
  3120. top:0px;
  3121. width:67px;
  3122. height:30px;
  3123. background:inherit;
  3124. background-color:rgba(255, 255, 255, 0);
  3125. border:none;
  3126. border-top:0px;
  3127. border-right:0px;
  3128. border-bottom:0px;
  3129. border-radius:0px;
  3130. border-top-left-radius:0px;
  3131. border-bottom-left-radius:0px;
  3132. -moz-box-shadow:none;
  3133. -webkit-box-shadow:none;
  3134. box-shadow:none;
  3135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3136. font-weight:400;
  3137. font-style:normal;
  3138. font-size:14px;
  3139. }
  3140. #u37064 {
  3141. border-width:0px;
  3142. position:absolute;
  3143. left:2308px;
  3144. top:158px;
  3145. width:67px;
  3146. height:30px;
  3147. display:flex;
  3148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3149. font-weight:400;
  3150. font-style:normal;
  3151. font-size:14px;
  3152. }
  3153. #u37064 .text {
  3154. position:absolute;
  3155. align-self:center;
  3156. padding:5px 10px 5px 0px;
  3157. box-sizing:border-box;
  3158. width:100%;
  3159. }
  3160. #u37064_text {
  3161. border-width:0px;
  3162. white-space:nowrap;
  3163. text-transform:none;
  3164. }
  3165. #u37065_div {
  3166. border-width:0px;
  3167. position:absolute;
  3168. left:0px;
  3169. top:0px;
  3170. width:74px;
  3171. height:30px;
  3172. background:inherit;
  3173. background-color:rgba(255, 255, 255, 0);
  3174. border:none;
  3175. border-top:0px;
  3176. border-right:0px;
  3177. border-bottom:0px;
  3178. border-radius:0px;
  3179. border-top-left-radius:0px;
  3180. border-bottom-left-radius:0px;
  3181. -moz-box-shadow:none;
  3182. -webkit-box-shadow:none;
  3183. box-shadow:none;
  3184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3185. font-weight:400;
  3186. font-style:normal;
  3187. font-size:14px;
  3188. }
  3189. #u37065 {
  3190. border-width:0px;
  3191. position:absolute;
  3192. left:1668px;
  3193. top:238px;
  3194. width:74px;
  3195. height:30px;
  3196. display:flex;
  3197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3198. font-weight:400;
  3199. font-style:normal;
  3200. font-size:14px;
  3201. }
  3202. #u37065 .text {
  3203. position:absolute;
  3204. align-self:center;
  3205. padding:5px 10px 5px 0px;
  3206. box-sizing:border-box;
  3207. width:100%;
  3208. }
  3209. #u37065_text {
  3210. border-width:0px;
  3211. white-space:nowrap;
  3212. text-transform:none;
  3213. }
  3214. #u37066_div {
  3215. border-width:0px;
  3216. position:absolute;
  3217. left:0px;
  3218. top:0px;
  3219. width:67px;
  3220. height:30px;
  3221. background:inherit;
  3222. background-color:rgba(255, 255, 255, 0);
  3223. border:none;
  3224. border-top:0px;
  3225. border-right:0px;
  3226. border-bottom:0px;
  3227. border-radius:0px;
  3228. border-top-left-radius:0px;
  3229. border-bottom-left-radius:0px;
  3230. -moz-box-shadow:none;
  3231. -webkit-box-shadow:none;
  3232. box-shadow:none;
  3233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3234. font-weight:400;
  3235. font-style:normal;
  3236. font-size:14px;
  3237. }
  3238. #u37066 {
  3239. border-width:0px;
  3240. position:absolute;
  3241. left:1668px;
  3242. top:398px;
  3243. width:67px;
  3244. height:30px;
  3245. display:flex;
  3246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3247. font-weight:400;
  3248. font-style:normal;
  3249. font-size:14px;
  3250. }
  3251. #u37066 .text {
  3252. position:absolute;
  3253. align-self:center;
  3254. padding:5px 10px 5px 0px;
  3255. box-sizing:border-box;
  3256. width:100%;
  3257. }
  3258. #u37066_text {
  3259. border-width:0px;
  3260. white-space:nowrap;
  3261. text-transform:none;
  3262. }
  3263. #u37067 {
  3264. border-width:0px;
  3265. position:absolute;
  3266. left:0px;
  3267. top:0px;
  3268. width:0px;
  3269. height:0px;
  3270. }
  3271. #u37068_div {
  3272. border-width:0px;
  3273. position:absolute;
  3274. left:0px;
  3275. top:0px;
  3276. width:280px;
  3277. height:80px;
  3278. background:inherit;
  3279. background-color:rgba(255, 255, 255, 1);
  3280. box-sizing:border-box;
  3281. border-width:1px;
  3282. border-style:solid;
  3283. border-color:rgba(170, 170, 170, 1);
  3284. border-radius:4px;
  3285. -moz-box-shadow:none;
  3286. -webkit-box-shadow:none;
  3287. box-shadow:none;
  3288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3289. font-weight:400;
  3290. font-style:normal;
  3291. text-align:left;
  3292. }
  3293. #u37068 {
  3294. border-width:0px;
  3295. position:absolute;
  3296. left:1668px;
  3297. top:428px;
  3298. width:280px;
  3299. height:80px;
  3300. display:flex;
  3301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3302. font-weight:400;
  3303. font-style:normal;
  3304. text-align:left;
  3305. }
  3306. #u37068 .text {
  3307. position:absolute;
  3308. align-self:center;
  3309. padding:2px 2px 2px 10px;
  3310. box-sizing:border-box;
  3311. width:100%;
  3312. }
  3313. #u37068_text {
  3314. border-width:0px;
  3315. word-wrap:break-word;
  3316. text-transform:none;
  3317. visibility:hidden;
  3318. }
  3319. #u37069_input {
  3320. position:absolute;
  3321. left:0px;
  3322. top:0px;
  3323. width:132px;
  3324. height:31px;
  3325. padding:2px 2px 2px 2px;
  3326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3327. font-weight:400;
  3328. font-style:normal;
  3329. font-size:13px;
  3330. letter-spacing:normal;
  3331. color:#AAAAAA;
  3332. vertical-align:none;
  3333. text-align:left;
  3334. text-transform:none;
  3335. background-color:transparent;
  3336. border-color:transparent;
  3337. }
  3338. #u37069_input.disabled {
  3339. position:absolute;
  3340. left:0px;
  3341. top:0px;
  3342. width:132px;
  3343. height:31px;
  3344. padding:2px 2px 2px 2px;
  3345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3346. font-weight:400;
  3347. font-style:normal;
  3348. font-size:13px;
  3349. letter-spacing:normal;
  3350. color:#AAAAAA;
  3351. vertical-align:none;
  3352. text-align:left;
  3353. text-transform:none;
  3354. background-color:transparent;
  3355. border-color:transparent;
  3356. }
  3357. #u37069_div {
  3358. border-width:0px;
  3359. position:absolute;
  3360. left:0px;
  3361. top:0px;
  3362. width:132px;
  3363. height:31px;
  3364. background:inherit;
  3365. background-color:rgba(255, 255, 255, 0);
  3366. border:none;
  3367. border-radius:0px;
  3368. -moz-box-shadow:none;
  3369. -webkit-box-shadow:none;
  3370. box-shadow:none;
  3371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3372. font-weight:400;
  3373. font-style:normal;
  3374. color:#AAAAAA;
  3375. }
  3376. #u37069 {
  3377. border-width:0px;
  3378. position:absolute;
  3379. left:1675px;
  3380. top:433px;
  3381. width:132px;
  3382. height:31px;
  3383. display:flex;
  3384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3385. font-weight:400;
  3386. font-style:normal;
  3387. color:#AAAAAA;
  3388. }
  3389. #u37069 .text {
  3390. position:absolute;
  3391. align-self:center;
  3392. padding:2px 2px 2px 2px;
  3393. box-sizing:border-box;
  3394. width:100%;
  3395. }
  3396. #u37069_div.disabled {
  3397. border-width:0px;
  3398. position:absolute;
  3399. left:0px;
  3400. top:0px;
  3401. width:132px;
  3402. height:31px;
  3403. background:inherit;
  3404. background-color:rgba(240, 240, 240, 1);
  3405. border:none;
  3406. border-radius:0px;
  3407. -moz-box-shadow:none;
  3408. -webkit-box-shadow:none;
  3409. box-shadow:none;
  3410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3411. font-weight:400;
  3412. font-style:normal;
  3413. color:#AAAAAA;
  3414. }
  3415. #u37069.disabled {
  3416. }
  3417. #u37070 {
  3418. border-width:0px;
  3419. position:absolute;
  3420. left:0px;
  3421. top:0px;
  3422. width:0px;
  3423. height:0px;
  3424. }
  3425. #u37071_div {
  3426. border-width:0px;
  3427. position:absolute;
  3428. left:0px;
  3429. top:0px;
  3430. width:280px;
  3431. height:40px;
  3432. background:inherit;
  3433. background-color:rgba(255, 255, 255, 1);
  3434. box-sizing:border-box;
  3435. border-width:1px;
  3436. border-style:solid;
  3437. border-color:rgba(170, 170, 170, 1);
  3438. border-radius:4px;
  3439. -moz-box-shadow:none;
  3440. -webkit-box-shadow:none;
  3441. box-shadow:none;
  3442. }
  3443. #u37071 {
  3444. border-width:0px;
  3445. position:absolute;
  3446. left:2308px;
  3447. top:188px;
  3448. width:280px;
  3449. height:40px;
  3450. display:flex;
  3451. }
  3452. #u37071 .text {
  3453. position:absolute;
  3454. align-self:center;
  3455. padding:2px 2px 2px 0px;
  3456. box-sizing:border-box;
  3457. width:100%;
  3458. }
  3459. #u37071_text {
  3460. border-width:0px;
  3461. word-wrap:break-word;
  3462. text-transform:none;
  3463. visibility:hidden;
  3464. }
  3465. #u37072_input {
  3466. position:absolute;
  3467. left:0px;
  3468. top:0px;
  3469. width:266px;
  3470. height:30px;
  3471. padding:2px 2px 2px 0px;
  3472. font-family:'ArialMT', 'Arial', sans-serif;
  3473. font-weight:400;
  3474. font-style:normal;
  3475. font-size:13px;
  3476. letter-spacing:normal;
  3477. color:#AAAAAA;
  3478. vertical-align:none;
  3479. text-align:left;
  3480. text-transform:none;
  3481. background-color:transparent;
  3482. border-color:transparent;
  3483. }
  3484. #u37072_input.disabled {
  3485. position:absolute;
  3486. left:0px;
  3487. top:0px;
  3488. width:266px;
  3489. height:30px;
  3490. padding:2px 2px 2px 0px;
  3491. font-family:'ArialMT', 'Arial', sans-serif;
  3492. font-weight:400;
  3493. font-style:normal;
  3494. font-size:13px;
  3495. letter-spacing:normal;
  3496. color:#AAAAAA;
  3497. vertical-align:none;
  3498. text-align:left;
  3499. text-transform:none;
  3500. background-color:transparent;
  3501. border-color:transparent;
  3502. }
  3503. #u37072_div {
  3504. border-width:0px;
  3505. position:absolute;
  3506. left:0px;
  3507. top:0px;
  3508. width:266px;
  3509. height:30px;
  3510. background:inherit;
  3511. background-color:rgba(255, 255, 255, 1);
  3512. border:none;
  3513. border-radius:0px;
  3514. -moz-box-shadow:none;
  3515. -webkit-box-shadow:none;
  3516. box-shadow:none;
  3517. color:#AAAAAA;
  3518. }
  3519. #u37072 {
  3520. border-width:0px;
  3521. position:absolute;
  3522. left:2315px;
  3523. top:194px;
  3524. width:266px;
  3525. height:30px;
  3526. display:flex;
  3527. color:#AAAAAA;
  3528. }
  3529. #u37072 .text {
  3530. position:absolute;
  3531. align-self:flex-start;
  3532. padding:2px 2px 2px 0px;
  3533. box-sizing:border-box;
  3534. width:100%;
  3535. }
  3536. #u37072_div.disabled {
  3537. border-width:0px;
  3538. position:absolute;
  3539. left:0px;
  3540. top:0px;
  3541. width:266px;
  3542. height:30px;
  3543. background:inherit;
  3544. background-color:rgba(240, 240, 240, 1);
  3545. border:none;
  3546. border-radius:0px;
  3547. -moz-box-shadow:none;
  3548. -webkit-box-shadow:none;
  3549. box-shadow:none;
  3550. color:#AAAAAA;
  3551. }
  3552. #u37072.disabled {
  3553. }
  3554. .u37072_input_option {
  3555. }
  3556. #u37073_div {
  3557. border-width:0px;
  3558. position:absolute;
  3559. left:0px;
  3560. top:0px;
  3561. width:67px;
  3562. height:30px;
  3563. background:inherit;
  3564. background-color:rgba(255, 255, 255, 0);
  3565. border:none;
  3566. border-top:0px;
  3567. border-right:0px;
  3568. border-bottom:0px;
  3569. border-radius:0px;
  3570. border-top-left-radius:0px;
  3571. border-bottom-left-radius:0px;
  3572. -moz-box-shadow:none;
  3573. -webkit-box-shadow:none;
  3574. box-shadow:none;
  3575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3576. font-weight:400;
  3577. font-style:normal;
  3578. font-size:14px;
  3579. }
  3580. #u37073 {
  3581. border-width:0px;
  3582. position:absolute;
  3583. left:1988px;
  3584. top:398px;
  3585. width:67px;
  3586. height:30px;
  3587. display:flex;
  3588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3589. font-weight:400;
  3590. font-style:normal;
  3591. font-size:14px;
  3592. }
  3593. #u37073 .text {
  3594. position:absolute;
  3595. align-self:center;
  3596. padding:5px 10px 5px 0px;
  3597. box-sizing:border-box;
  3598. width:100%;
  3599. }
  3600. #u37073_text {
  3601. border-width:0px;
  3602. white-space:nowrap;
  3603. text-transform:none;
  3604. }
  3605. #u37074_div {
  3606. border-width:0px;
  3607. position:absolute;
  3608. left:0px;
  3609. top:0px;
  3610. width:80px;
  3611. height:80px;
  3612. background:inherit;
  3613. background-color:rgba(255, 255, 255, 1);
  3614. box-sizing:border-box;
  3615. border-width:1px;
  3616. border-style:solid;
  3617. border-color:rgba(170, 170, 170, 1);
  3618. border-radius:4px;
  3619. -moz-box-shadow:none;
  3620. -webkit-box-shadow:none;
  3621. box-shadow:none;
  3622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3623. font-weight:400;
  3624. font-style:normal;
  3625. font-size:24px;
  3626. }
  3627. #u37074 {
  3628. border-width:0px;
  3629. position:absolute;
  3630. left:1988px;
  3631. top:428px;
  3632. width:80px;
  3633. height:80px;
  3634. display:flex;
  3635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3636. font-weight:400;
  3637. font-style:normal;
  3638. font-size:24px;
  3639. }
  3640. #u37074 .text {
  3641. position:absolute;
  3642. align-self:center;
  3643. padding:2px 2px 2px 2px;
  3644. box-sizing:border-box;
  3645. width:100%;
  3646. }
  3647. #u37074_text {
  3648. border-width:0px;
  3649. word-wrap:break-word;
  3650. text-transform:none;
  3651. }
  3652. #u37075_div {
  3653. border-width:0px;
  3654. position:absolute;
  3655. left:0px;
  3656. top:0px;
  3657. width:71px;
  3658. height:35px;
  3659. background:inherit;
  3660. background-color:rgba(255, 255, 255, 0);
  3661. border:none;
  3662. border-top:0px;
  3663. border-right:0px;
  3664. border-bottom:0px;
  3665. border-radius:0px;
  3666. border-top-left-radius:0px;
  3667. border-bottom-left-radius:0px;
  3668. -moz-box-shadow:none;
  3669. -webkit-box-shadow:none;
  3670. box-shadow:none;
  3671. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3672. font-weight:500;
  3673. font-style:normal;
  3674. font-size:18px;
  3675. color:#1890FF;
  3676. }
  3677. #u37075 {
  3678. border-width:0px;
  3679. position:absolute;
  3680. left:1668px;
  3681. top:705px;
  3682. width:71px;
  3683. height:35px;
  3684. display:flex;
  3685. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3686. font-weight:500;
  3687. font-style:normal;
  3688. font-size:18px;
  3689. color:#1890FF;
  3690. }
  3691. #u37075 .text {
  3692. position:absolute;
  3693. align-self:center;
  3694. padding:5px 10px 5px 0px;
  3695. box-sizing:border-box;
  3696. width:100%;
  3697. }
  3698. #u37075_text {
  3699. border-width:0px;
  3700. white-space:nowrap;
  3701. text-transform:none;
  3702. }
  3703. #u37076_div {
  3704. border-width:0px;
  3705. position:absolute;
  3706. left:0px;
  3707. top:0px;
  3708. width:100px;
  3709. height:30px;
  3710. background:inherit;
  3711. background-color:rgba(255, 255, 255, 1);
  3712. box-sizing:border-box;
  3713. border-width:1px;
  3714. border-style:solid;
  3715. border-color:rgba(170, 170, 170, 1);
  3716. border-radius:4px;
  3717. -moz-box-shadow:none;
  3718. -webkit-box-shadow:none;
  3719. box-shadow:none;
  3720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3721. font-weight:400;
  3722. font-style:normal;
  3723. font-size:12px;
  3724. }
  3725. #u37076 {
  3726. border-width:0px;
  3727. position:absolute;
  3728. left:1668px;
  3729. top:750px;
  3730. width:100px;
  3731. height:30px;
  3732. display:flex;
  3733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3734. font-weight:400;
  3735. font-style:normal;
  3736. font-size:12px;
  3737. }
  3738. #u37076 .text {
  3739. position:absolute;
  3740. align-self:center;
  3741. padding:2px 2px 2px 2px;
  3742. box-sizing:border-box;
  3743. width:100%;
  3744. }
  3745. #u37076_text {
  3746. border-width:0px;
  3747. word-wrap:break-word;
  3748. text-transform:none;
  3749. }
  3750. #u37077_div {
  3751. border-width:0px;
  3752. position:absolute;
  3753. left:0px;
  3754. top:0px;
  3755. width:89px;
  3756. height:35px;
  3757. background:inherit;
  3758. background-color:rgba(255, 255, 255, 0);
  3759. border:none;
  3760. border-top:0px;
  3761. border-right:0px;
  3762. border-bottom:0px;
  3763. border-radius:0px;
  3764. border-top-left-radius:0px;
  3765. border-bottom-left-radius:0px;
  3766. -moz-box-shadow:none;
  3767. -webkit-box-shadow:none;
  3768. box-shadow:none;
  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. }
  3774. #u37077 {
  3775. border-width:0px;
  3776. position:absolute;
  3777. left:1773px;
  3778. top:705px;
  3779. width:89px;
  3780. height:35px;
  3781. display:flex;
  3782. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3783. font-weight:500;
  3784. font-style:normal;
  3785. font-size:18px;
  3786. }
  3787. #u37077 .text {
  3788. position:absolute;
  3789. align-self:center;
  3790. padding:5px 10px 5px 0px;
  3791. box-sizing:border-box;
  3792. width:100%;
  3793. }
  3794. #u37077_text {
  3795. border-width:0px;
  3796. white-space:nowrap;
  3797. text-transform:none;
  3798. }
  3799. #u37078_div {
  3800. border-width:0px;
  3801. position:absolute;
  3802. left:0px;
  3803. top:0px;
  3804. width:67px;
  3805. height:30px;
  3806. background:inherit;
  3807. background-color:rgba(255, 255, 255, 0);
  3808. border:none;
  3809. border-top:0px;
  3810. border-right:0px;
  3811. border-bottom:0px;
  3812. border-radius:0px;
  3813. border-top-left-radius:0px;
  3814. border-bottom-left-radius:0px;
  3815. -moz-box-shadow:none;
  3816. -webkit-box-shadow:none;
  3817. box-shadow:none;
  3818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3819. font-weight:400;
  3820. font-style:normal;
  3821. font-size:14px;
  3822. }
  3823. #u37078 {
  3824. border-width:0px;
  3825. position:absolute;
  3826. left:2308px;
  3827. top:238px;
  3828. width:67px;
  3829. height:30px;
  3830. display:flex;
  3831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3832. font-weight:400;
  3833. font-style:normal;
  3834. font-size:14px;
  3835. }
  3836. #u37078 .text {
  3837. position:absolute;
  3838. align-self:center;
  3839. padding:5px 10px 5px 0px;
  3840. box-sizing:border-box;
  3841. width:100%;
  3842. }
  3843. #u37078_text {
  3844. border-width:0px;
  3845. white-space:nowrap;
  3846. text-transform:none;
  3847. }
  3848. #u37079 {
  3849. border-width:0px;
  3850. position:absolute;
  3851. left:0px;
  3852. top:0px;
  3853. width:0px;
  3854. height:0px;
  3855. }
  3856. #u37080_div {
  3857. border-width:0px;
  3858. position:absolute;
  3859. left:0px;
  3860. top:0px;
  3861. width:280px;
  3862. height:40px;
  3863. background:inherit;
  3864. background-color:rgba(255, 255, 255, 1);
  3865. box-sizing:border-box;
  3866. border-width:1px;
  3867. border-style:solid;
  3868. border-color:rgba(170, 170, 170, 1);
  3869. border-radius:4px;
  3870. -moz-box-shadow:none;
  3871. -webkit-box-shadow:none;
  3872. box-shadow:none;
  3873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3874. font-weight:400;
  3875. font-style:normal;
  3876. text-align:left;
  3877. }
  3878. #u37080 {
  3879. border-width:0px;
  3880. position:absolute;
  3881. left:2308px;
  3882. top:268px;
  3883. width:280px;
  3884. height:40px;
  3885. display:flex;
  3886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3887. font-weight:400;
  3888. font-style:normal;
  3889. text-align:left;
  3890. }
  3891. #u37080 .text {
  3892. position:absolute;
  3893. align-self:center;
  3894. padding:2px 2px 2px 10px;
  3895. box-sizing:border-box;
  3896. width:100%;
  3897. }
  3898. #u37080_text {
  3899. border-width:0px;
  3900. word-wrap:break-word;
  3901. text-transform:none;
  3902. visibility:hidden;
  3903. }
  3904. #u37081_input {
  3905. position:absolute;
  3906. left:0px;
  3907. top:0px;
  3908. width:132px;
  3909. height:31px;
  3910. padding:2px 2px 2px 2px;
  3911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3912. font-weight:400;
  3913. font-style:normal;
  3914. font-size:13px;
  3915. letter-spacing:normal;
  3916. color:#AAAAAA;
  3917. vertical-align:none;
  3918. text-align:left;
  3919. text-transform:none;
  3920. background-color:transparent;
  3921. border-color:transparent;
  3922. }
  3923. #u37081_input.disabled {
  3924. position:absolute;
  3925. left:0px;
  3926. top:0px;
  3927. width:132px;
  3928. height:31px;
  3929. padding:2px 2px 2px 2px;
  3930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3931. font-weight:400;
  3932. font-style:normal;
  3933. font-size:13px;
  3934. letter-spacing:normal;
  3935. color:#AAAAAA;
  3936. vertical-align:none;
  3937. text-align:left;
  3938. text-transform:none;
  3939. background-color:transparent;
  3940. border-color:transparent;
  3941. }
  3942. #u37081_div {
  3943. border-width:0px;
  3944. position:absolute;
  3945. left:0px;
  3946. top:0px;
  3947. width:132px;
  3948. height:31px;
  3949. background:inherit;
  3950. background-color:rgba(255, 255, 255, 0);
  3951. border:none;
  3952. border-radius:0px;
  3953. -moz-box-shadow:none;
  3954. -webkit-box-shadow:none;
  3955. box-shadow:none;
  3956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3957. font-weight:400;
  3958. font-style:normal;
  3959. color:#AAAAAA;
  3960. }
  3961. #u37081 {
  3962. border-width:0px;
  3963. position:absolute;
  3964. left:2315px;
  3965. top:273px;
  3966. width:132px;
  3967. height:31px;
  3968. display:flex;
  3969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3970. font-weight:400;
  3971. font-style:normal;
  3972. color:#AAAAAA;
  3973. }
  3974. #u37081 .text {
  3975. position:absolute;
  3976. align-self:center;
  3977. padding:2px 2px 2px 2px;
  3978. box-sizing:border-box;
  3979. width:100%;
  3980. }
  3981. #u37081_div.disabled {
  3982. border-width:0px;
  3983. position:absolute;
  3984. left:0px;
  3985. top:0px;
  3986. width:132px;
  3987. height:31px;
  3988. background:inherit;
  3989. background-color:rgba(240, 240, 240, 1);
  3990. border:none;
  3991. border-radius:0px;
  3992. -moz-box-shadow:none;
  3993. -webkit-box-shadow:none;
  3994. box-shadow:none;
  3995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3996. font-weight:400;
  3997. font-style:normal;
  3998. color:#AAAAAA;
  3999. }
  4000. #u37081.disabled {
  4001. }
  4002. #u37082_div {
  4003. border-width:0px;
  4004. position:absolute;
  4005. left:0px;
  4006. top:0px;
  4007. width:155px;
  4008. height:35px;
  4009. background:inherit;
  4010. background-color:rgba(255, 255, 255, 0);
  4011. border:none;
  4012. border-top:0px;
  4013. border-right:0px;
  4014. border-bottom:0px;
  4015. border-radius:0px;
  4016. border-top-left-radius:0px;
  4017. border-bottom-left-radius:0px;
  4018. -moz-box-shadow:none;
  4019. -webkit-box-shadow:none;
  4020. box-shadow:none;
  4021. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4022. font-weight:500;
  4023. font-style:normal;
  4024. font-size:18px;
  4025. }
  4026. #u37082 {
  4027. border-width:0px;
  4028. position:absolute;
  4029. left:1668px;
  4030. top:538px;
  4031. width:155px;
  4032. height:35px;
  4033. display:flex;
  4034. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4035. font-weight:500;
  4036. font-style:normal;
  4037. font-size:18px;
  4038. }
  4039. #u37082 .text {
  4040. position:absolute;
  4041. align-self:center;
  4042. padding:5px 10px 5px 0px;
  4043. box-sizing:border-box;
  4044. width:100%;
  4045. }
  4046. #u37082_text {
  4047. border-width:0px;
  4048. white-space:nowrap;
  4049. text-transform:none;
  4050. }
  4051. #u37083 {
  4052. border-width:0px;
  4053. position:absolute;
  4054. left:0px;
  4055. top:0px;
  4056. width:0px;
  4057. height:0px;
  4058. }
  4059. #u37084_div {
  4060. border-width:0px;
  4061. position:absolute;
  4062. left:0px;
  4063. top:0px;
  4064. width:80px;
  4065. height:80px;
  4066. background:inherit;
  4067. background-color:rgba(255, 255, 255, 1);
  4068. box-sizing:border-box;
  4069. border-width:1px;
  4070. border-style:solid;
  4071. border-color:rgba(170, 170, 170, 1);
  4072. border-radius:4px;
  4073. -moz-box-shadow:none;
  4074. -webkit-box-shadow:none;
  4075. box-shadow:none;
  4076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4077. font-weight:400;
  4078. font-style:normal;
  4079. font-size:24px;
  4080. }
  4081. #u37084 {
  4082. border-width:0px;
  4083. position:absolute;
  4084. left:1669px;
  4085. top:583px;
  4086. width:80px;
  4087. height:80px;
  4088. display:flex;
  4089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4090. font-weight:400;
  4091. font-style:normal;
  4092. font-size:24px;
  4093. }
  4094. #u37084 .text {
  4095. position:absolute;
  4096. align-self:center;
  4097. padding:2px 2px 2px 2px;
  4098. box-sizing:border-box;
  4099. width:100%;
  4100. }
  4101. #u37084_text {
  4102. border-width:0px;
  4103. word-wrap:break-word;
  4104. text-transform:none;
  4105. visibility:hidden;
  4106. }
  4107. #u37085_div {
  4108. border-width:0px;
  4109. position:absolute;
  4110. left:0px;
  4111. top:0px;
  4112. width:28px;
  4113. height:27px;
  4114. background:inherit;
  4115. background-color:rgba(0, 191, 191, 1);
  4116. box-sizing:border-box;
  4117. border-width:1px;
  4118. border-style:solid;
  4119. border-color:rgba(170, 170, 170, 1);
  4120. border-radius:4px;
  4121. -moz-box-shadow:none;
  4122. -webkit-box-shadow:none;
  4123. box-shadow:none;
  4124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4125. font-weight:400;
  4126. font-style:normal;
  4127. text-align:left;
  4128. }
  4129. #u37085 {
  4130. border-width:0px;
  4131. position:absolute;
  4132. left:1695px;
  4133. top:596px;
  4134. width:28px;
  4135. height:27px;
  4136. display:flex;
  4137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4138. font-weight:400;
  4139. font-style:normal;
  4140. text-align:left;
  4141. }
  4142. #u37085 .text {
  4143. position:absolute;
  4144. align-self:center;
  4145. padding:2px 2px 2px 10px;
  4146. box-sizing:border-box;
  4147. width:100%;
  4148. }
  4149. #u37085_text {
  4150. border-width:0px;
  4151. word-wrap:break-word;
  4152. text-transform:none;
  4153. visibility:hidden;
  4154. }
  4155. #u37086_div {
  4156. border-width:0px;
  4157. position:absolute;
  4158. left:0px;
  4159. top:0px;
  4160. width:29px;
  4161. height:30px;
  4162. background:inherit;
  4163. background-color:rgba(255, 255, 255, 0);
  4164. border:none;
  4165. border-top:0px;
  4166. border-right:0px;
  4167. border-bottom:0px;
  4168. border-radius:0px;
  4169. border-top-left-radius:0px;
  4170. border-bottom-left-radius:0px;
  4171. -moz-box-shadow:none;
  4172. -webkit-box-shadow:none;
  4173. box-shadow:none;
  4174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4175. font-weight:400;
  4176. font-style:normal;
  4177. font-size:14px;
  4178. }
  4179. #u37086 {
  4180. border-width:0px;
  4181. position:absolute;
  4182. left:1694px;
  4183. top:628px;
  4184. width:29px;
  4185. height:30px;
  4186. display:flex;
  4187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4188. font-weight:400;
  4189. font-style:normal;
  4190. font-size:14px;
  4191. }
  4192. #u37086 .text {
  4193. position:absolute;
  4194. align-self:center;
  4195. padding:5px 0px 5px 0px;
  4196. box-sizing:border-box;
  4197. width:100%;
  4198. }
  4199. #u37086_text {
  4200. border-width:0px;
  4201. white-space:nowrap;
  4202. text-transform:none;
  4203. }
  4204. #u37087 {
  4205. border-width:0px;
  4206. position:absolute;
  4207. left:0px;
  4208. top:0px;
  4209. width:0px;
  4210. height:0px;
  4211. }
  4212. #u37088_div {
  4213. border-width:0px;
  4214. position:absolute;
  4215. left:0px;
  4216. top:0px;
  4217. width:80px;
  4218. height:80px;
  4219. background:inherit;
  4220. background-color:rgba(255, 255, 255, 1);
  4221. box-sizing:border-box;
  4222. border-width:1px;
  4223. border-style:solid;
  4224. border-color:rgba(170, 170, 170, 1);
  4225. border-radius:4px;
  4226. -moz-box-shadow:none;
  4227. -webkit-box-shadow:none;
  4228. box-shadow:none;
  4229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4230. font-weight:400;
  4231. font-style:normal;
  4232. font-size:24px;
  4233. }
  4234. #u37088 {
  4235. border-width:0px;
  4236. position:absolute;
  4237. left:1768px;
  4238. top:583px;
  4239. width:80px;
  4240. height:80px;
  4241. display:flex;
  4242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4243. font-weight:400;
  4244. font-style:normal;
  4245. font-size:24px;
  4246. }
  4247. #u37088 .text {
  4248. position:absolute;
  4249. align-self:center;
  4250. padding:2px 2px 2px 2px;
  4251. box-sizing:border-box;
  4252. width:100%;
  4253. }
  4254. #u37088_text {
  4255. border-width:0px;
  4256. word-wrap:break-word;
  4257. text-transform:none;
  4258. visibility:hidden;
  4259. }
  4260. #u37089_div {
  4261. border-width:0px;
  4262. position:absolute;
  4263. left:0px;
  4264. top:0px;
  4265. width:28px;
  4266. height:27px;
  4267. background:inherit;
  4268. background-color:rgba(128, 128, 255, 1);
  4269. box-sizing:border-box;
  4270. border-width:1px;
  4271. border-style:solid;
  4272. border-color:rgba(170, 170, 170, 1);
  4273. border-radius:4px;
  4274. -moz-box-shadow:none;
  4275. -webkit-box-shadow:none;
  4276. box-shadow:none;
  4277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4278. font-weight:400;
  4279. font-style:normal;
  4280. text-align:left;
  4281. }
  4282. #u37089 {
  4283. border-width:0px;
  4284. position:absolute;
  4285. left:1794px;
  4286. top:596px;
  4287. width:28px;
  4288. height:27px;
  4289. display:flex;
  4290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4291. font-weight:400;
  4292. font-style:normal;
  4293. text-align:left;
  4294. }
  4295. #u37089 .text {
  4296. position:absolute;
  4297. align-self:center;
  4298. padding:2px 2px 2px 10px;
  4299. box-sizing:border-box;
  4300. width:100%;
  4301. }
  4302. #u37089_text {
  4303. border-width:0px;
  4304. word-wrap:break-word;
  4305. text-transform:none;
  4306. visibility:hidden;
  4307. }
  4308. #u37090_div {
  4309. border-width:0px;
  4310. position:absolute;
  4311. left:0px;
  4312. top:0px;
  4313. width:15px;
  4314. height:30px;
  4315. background:inherit;
  4316. background-color:rgba(255, 255, 255, 0);
  4317. border:none;
  4318. border-top:0px;
  4319. border-right:0px;
  4320. border-bottom:0px;
  4321. border-radius:0px;
  4322. border-top-left-radius:0px;
  4323. border-bottom-left-radius:0px;
  4324. -moz-box-shadow:none;
  4325. -webkit-box-shadow:none;
  4326. box-shadow:none;
  4327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4328. font-weight:400;
  4329. font-style:normal;
  4330. font-size:14px;
  4331. }
  4332. #u37090 {
  4333. border-width:0px;
  4334. position:absolute;
  4335. left:1801px;
  4336. top:628px;
  4337. width:15px;
  4338. height:30px;
  4339. display:flex;
  4340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4341. font-weight:400;
  4342. font-style:normal;
  4343. font-size:14px;
  4344. }
  4345. #u37090 .text {
  4346. position:absolute;
  4347. align-self:center;
  4348. padding:5px 0px 5px 0px;
  4349. box-sizing:border-box;
  4350. width:100%;
  4351. }
  4352. #u37090_text {
  4353. border-width:0px;
  4354. white-space:nowrap;
  4355. text-transform:none;
  4356. }
  4357. #u37091 {
  4358. border-width:0px;
  4359. position:absolute;
  4360. left:0px;
  4361. top:0px;
  4362. width:0px;
  4363. height:0px;
  4364. }
  4365. #u37092_div {
  4366. border-width:0px;
  4367. position:absolute;
  4368. left:0px;
  4369. top:0px;
  4370. width:280px;
  4371. height:40px;
  4372. background:inherit;
  4373. background-color:rgba(255, 255, 255, 1);
  4374. box-sizing:border-box;
  4375. border-width:1px;
  4376. border-style:solid;
  4377. border-color:rgba(170, 170, 170, 1);
  4378. border-radius:4px;
  4379. -moz-box-shadow:none;
  4380. -webkit-box-shadow:none;
  4381. box-shadow:none;
  4382. }
  4383. #u37092 {
  4384. border-width:0px;
  4385. position:absolute;
  4386. left:1668px;
  4387. top:268px;
  4388. width:280px;
  4389. height:40px;
  4390. display:flex;
  4391. }
  4392. #u37092 .text {
  4393. position:absolute;
  4394. align-self:center;
  4395. padding:2px 2px 2px 0px;
  4396. box-sizing:border-box;
  4397. width:100%;
  4398. }
  4399. #u37092_text {
  4400. border-width:0px;
  4401. word-wrap:break-word;
  4402. text-transform:none;
  4403. visibility:hidden;
  4404. }
  4405. #u37093_input {
  4406. position:absolute;
  4407. left:0px;
  4408. top:0px;
  4409. width:266px;
  4410. height:30px;
  4411. padding:2px 2px 2px 0px;
  4412. font-family:'ArialMT', 'Arial', sans-serif;
  4413. font-weight:400;
  4414. font-style:normal;
  4415. font-size:13px;
  4416. letter-spacing:normal;
  4417. color:#AAAAAA;
  4418. vertical-align:none;
  4419. text-align:left;
  4420. text-transform:none;
  4421. background-color:transparent;
  4422. border-color:transparent;
  4423. }
  4424. #u37093_input.disabled {
  4425. position:absolute;
  4426. left:0px;
  4427. top:0px;
  4428. width:266px;
  4429. height:30px;
  4430. padding:2px 2px 2px 0px;
  4431. font-family:'ArialMT', 'Arial', sans-serif;
  4432. font-weight:400;
  4433. font-style:normal;
  4434. font-size:13px;
  4435. letter-spacing:normal;
  4436. color:#AAAAAA;
  4437. vertical-align:none;
  4438. text-align:left;
  4439. text-transform:none;
  4440. background-color:transparent;
  4441. border-color:transparent;
  4442. }
  4443. #u37093_div {
  4444. border-width:0px;
  4445. position:absolute;
  4446. left:0px;
  4447. top:0px;
  4448. width:266px;
  4449. height:30px;
  4450. background:inherit;
  4451. background-color:rgba(255, 255, 255, 1);
  4452. border:none;
  4453. border-radius:0px;
  4454. -moz-box-shadow:none;
  4455. -webkit-box-shadow:none;
  4456. box-shadow:none;
  4457. color:#AAAAAA;
  4458. }
  4459. #u37093 {
  4460. border-width:0px;
  4461. position:absolute;
  4462. left:1675px;
  4463. top:274px;
  4464. width:266px;
  4465. height:30px;
  4466. display:flex;
  4467. color:#AAAAAA;
  4468. }
  4469. #u37093 .text {
  4470. position:absolute;
  4471. align-self:flex-start;
  4472. padding:2px 2px 2px 0px;
  4473. box-sizing:border-box;
  4474. width:100%;
  4475. }
  4476. #u37093_div.disabled {
  4477. border-width:0px;
  4478. position:absolute;
  4479. left:0px;
  4480. top:0px;
  4481. width:266px;
  4482. height:30px;
  4483. background:inherit;
  4484. background-color:rgba(240, 240, 240, 1);
  4485. border:none;
  4486. border-radius:0px;
  4487. -moz-box-shadow:none;
  4488. -webkit-box-shadow:none;
  4489. box-shadow:none;
  4490. color:#AAAAAA;
  4491. }
  4492. #u37093.disabled {
  4493. }
  4494. .u37093_input_option {
  4495. }
  4496. #u37094_div {
  4497. border-width:0px;
  4498. position:absolute;
  4499. left:0px;
  4500. top:0px;
  4501. width:81px;
  4502. height:30px;
  4503. background:inherit;
  4504. background-color:rgba(255, 255, 255, 0);
  4505. border:none;
  4506. border-top:0px;
  4507. border-right:0px;
  4508. border-bottom:0px;
  4509. border-radius:0px;
  4510. border-top-left-radius:0px;
  4511. border-bottom-left-radius:0px;
  4512. -moz-box-shadow:none;
  4513. -webkit-box-shadow:none;
  4514. box-shadow:none;
  4515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4516. font-weight:400;
  4517. font-style:normal;
  4518. font-size:14px;
  4519. text-align:right;
  4520. }
  4521. #u37094 {
  4522. border-width:0px;
  4523. position:absolute;
  4524. left:2308px;
  4525. top:319px;
  4526. width:81px;
  4527. height:30px;
  4528. display:flex;
  4529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4530. font-weight:400;
  4531. font-style:normal;
  4532. font-size:14px;
  4533. text-align:right;
  4534. }
  4535. #u37094 .text {
  4536. position:absolute;
  4537. align-self:center;
  4538. padding:5px 10px 5px 0px;
  4539. box-sizing:border-box;
  4540. width:100%;
  4541. }
  4542. #u37094_text {
  4543. border-width:0px;
  4544. white-space:nowrap;
  4545. text-transform:none;
  4546. }
  4547. #u37095_img {
  4548. border-width:0px;
  4549. position:absolute;
  4550. left:0px;
  4551. top:0px;
  4552. width:50px;
  4553. height:31px;
  4554. }
  4555. #u37095 {
  4556. border-width:0px;
  4557. position:absolute;
  4558. left:2308px;
  4559. top:357px;
  4560. width:50px;
  4561. height:31px;
  4562. display:flex;
  4563. }
  4564. #u37095 .text {
  4565. position:absolute;
  4566. align-self:center;
  4567. padding:2px 2px 2px 2px;
  4568. box-sizing:border-box;
  4569. width:100%;
  4570. }
  4571. #u37095_text {
  4572. border-width:0px;
  4573. word-wrap:break-word;
  4574. text-transform:none;
  4575. visibility:hidden;
  4576. }
  4577. #u37096_div {
  4578. border-width:0px;
  4579. position:absolute;
  4580. left:0px;
  4581. top:0px;
  4582. width:60px;
  4583. height:30px;
  4584. background:inherit;
  4585. background-color:rgba(255, 255, 255, 0);
  4586. border:none;
  4587. border-top:0px;
  4588. border-right:0px;
  4589. border-bottom:0px;
  4590. border-radius:0px;
  4591. border-top-left-radius:0px;
  4592. border-bottom-left-radius:0px;
  4593. -moz-box-shadow:none;
  4594. -webkit-box-shadow:none;
  4595. box-shadow:none;
  4596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4597. font-weight:400;
  4598. font-style:normal;
  4599. font-size:14px;
  4600. }
  4601. #u37096 {
  4602. border-width:0px;
  4603. position:absolute;
  4604. left:1668px;
  4605. top:318px;
  4606. width:60px;
  4607. height:30px;
  4608. display:flex;
  4609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4610. font-weight:400;
  4611. font-style:normal;
  4612. font-size:14px;
  4613. }
  4614. #u37096 .text {
  4615. position:absolute;
  4616. align-self:center;
  4617. padding:5px 10px 5px 0px;
  4618. box-sizing:border-box;
  4619. width:100%;
  4620. }
  4621. #u37096_text {
  4622. border-width:0px;
  4623. white-space:nowrap;
  4624. text-transform:none;
  4625. }
  4626. #u37097 {
  4627. border-width:0px;
  4628. position:absolute;
  4629. left:0px;
  4630. top:0px;
  4631. width:0px;
  4632. height:0px;
  4633. }
  4634. #u37098_div {
  4635. border-width:0px;
  4636. position:absolute;
  4637. left:0px;
  4638. top:0px;
  4639. width:280px;
  4640. height:40px;
  4641. background:inherit;
  4642. background-color:rgba(255, 255, 255, 1);
  4643. box-sizing:border-box;
  4644. border-width:1px;
  4645. border-style:solid;
  4646. border-color:rgba(170, 170, 170, 1);
  4647. border-radius:4px;
  4648. -moz-box-shadow:none;
  4649. -webkit-box-shadow:none;
  4650. box-shadow:none;
  4651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4652. font-weight:400;
  4653. font-style:normal;
  4654. text-align:left;
  4655. }
  4656. #u37098 {
  4657. border-width:0px;
  4658. position:absolute;
  4659. left:1668px;
  4660. top:348px;
  4661. width:280px;
  4662. height:40px;
  4663. display:flex;
  4664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4665. font-weight:400;
  4666. font-style:normal;
  4667. text-align:left;
  4668. }
  4669. #u37098 .text {
  4670. position:absolute;
  4671. align-self:center;
  4672. padding:2px 2px 2px 10px;
  4673. box-sizing:border-box;
  4674. width:100%;
  4675. }
  4676. #u37098_text {
  4677. border-width:0px;
  4678. word-wrap:break-word;
  4679. text-transform:none;
  4680. visibility:hidden;
  4681. }
  4682. #u37099_input {
  4683. position:absolute;
  4684. left:0px;
  4685. top:0px;
  4686. width:132px;
  4687. height:31px;
  4688. padding:2px 2px 2px 2px;
  4689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4690. font-weight:400;
  4691. font-style:normal;
  4692. font-size:13px;
  4693. letter-spacing:normal;
  4694. color:#AAAAAA;
  4695. vertical-align:none;
  4696. text-align:left;
  4697. text-transform:none;
  4698. background-color:transparent;
  4699. border-color:transparent;
  4700. }
  4701. #u37099_input.disabled {
  4702. position:absolute;
  4703. left:0px;
  4704. top:0px;
  4705. width:132px;
  4706. height:31px;
  4707. padding:2px 2px 2px 2px;
  4708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4709. font-weight:400;
  4710. font-style:normal;
  4711. font-size:13px;
  4712. letter-spacing:normal;
  4713. color:#AAAAAA;
  4714. vertical-align:none;
  4715. text-align:left;
  4716. text-transform:none;
  4717. background-color:transparent;
  4718. border-color:transparent;
  4719. }
  4720. #u37099_div {
  4721. border-width:0px;
  4722. position:absolute;
  4723. left:0px;
  4724. top:0px;
  4725. width:132px;
  4726. height:31px;
  4727. background:inherit;
  4728. background-color:rgba(255, 255, 255, 0);
  4729. border:none;
  4730. border-radius:0px;
  4731. -moz-box-shadow:none;
  4732. -webkit-box-shadow:none;
  4733. box-shadow:none;
  4734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4735. font-weight:400;
  4736. font-style:normal;
  4737. color:#AAAAAA;
  4738. }
  4739. #u37099 {
  4740. border-width:0px;
  4741. position:absolute;
  4742. left:1675px;
  4743. top:353px;
  4744. width:132px;
  4745. height:31px;
  4746. display:flex;
  4747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4748. font-weight:400;
  4749. font-style:normal;
  4750. color:#AAAAAA;
  4751. }
  4752. #u37099 .text {
  4753. position:absolute;
  4754. align-self:center;
  4755. padding:2px 2px 2px 2px;
  4756. box-sizing:border-box;
  4757. width:100%;
  4758. }
  4759. #u37099_div.disabled {
  4760. border-width:0px;
  4761. position:absolute;
  4762. left:0px;
  4763. top:0px;
  4764. width:132px;
  4765. height:31px;
  4766. background:inherit;
  4767. background-color:rgba(240, 240, 240, 1);
  4768. border:none;
  4769. border-radius:0px;
  4770. -moz-box-shadow:none;
  4771. -webkit-box-shadow:none;
  4772. box-shadow:none;
  4773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4774. font-weight:400;
  4775. font-style:normal;
  4776. color:#AAAAAA;
  4777. }
  4778. #u37099.disabled {
  4779. }
  4780. #u37100_div {
  4781. border-width:0px;
  4782. position:absolute;
  4783. left:0px;
  4784. top:0px;
  4785. width:74px;
  4786. height:30px;
  4787. background:inherit;
  4788. background-color:rgba(255, 255, 255, 0);
  4789. border:none;
  4790. border-top:0px;
  4791. border-right:0px;
  4792. border-bottom:0px;
  4793. border-radius:0px;
  4794. border-top-left-radius:0px;
  4795. border-bottom-left-radius:0px;
  4796. -moz-box-shadow:none;
  4797. -webkit-box-shadow:none;
  4798. box-shadow:none;
  4799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4800. font-weight:400;
  4801. font-style:normal;
  4802. font-size:14px;
  4803. }
  4804. #u37100 {
  4805. border-width:0px;
  4806. position:absolute;
  4807. left:1988px;
  4808. top:318px;
  4809. width:74px;
  4810. height:30px;
  4811. display:flex;
  4812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4813. font-weight:400;
  4814. font-style:normal;
  4815. font-size:14px;
  4816. }
  4817. #u37100 .text {
  4818. position:absolute;
  4819. align-self:center;
  4820. padding:5px 10px 5px 0px;
  4821. box-sizing:border-box;
  4822. width:100%;
  4823. }
  4824. #u37100_text {
  4825. border-width:0px;
  4826. white-space:nowrap;
  4827. text-transform:none;
  4828. }
  4829. #u37101 {
  4830. border-width:0px;
  4831. position:absolute;
  4832. left:0px;
  4833. top:0px;
  4834. width:0px;
  4835. height:0px;
  4836. }
  4837. #u37102_div {
  4838. border-width:0px;
  4839. position:absolute;
  4840. left:0px;
  4841. top:0px;
  4842. width:280px;
  4843. height:40px;
  4844. background:inherit;
  4845. background-color:rgba(255, 255, 255, 1);
  4846. box-sizing:border-box;
  4847. border-width:1px;
  4848. border-style:solid;
  4849. border-color:rgba(170, 170, 170, 1);
  4850. border-radius:4px;
  4851. -moz-box-shadow:none;
  4852. -webkit-box-shadow:none;
  4853. box-shadow:none;
  4854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4855. font-weight:400;
  4856. font-style:normal;
  4857. text-align:left;
  4858. }
  4859. #u37102 {
  4860. border-width:0px;
  4861. position:absolute;
  4862. left:1988px;
  4863. top:348px;
  4864. width:280px;
  4865. height:40px;
  4866. display:flex;
  4867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4868. font-weight:400;
  4869. font-style:normal;
  4870. text-align:left;
  4871. }
  4872. #u37102 .text {
  4873. position:absolute;
  4874. align-self:center;
  4875. padding:2px 2px 2px 10px;
  4876. box-sizing:border-box;
  4877. width:100%;
  4878. }
  4879. #u37102_text {
  4880. border-width:0px;
  4881. word-wrap:break-word;
  4882. text-transform:none;
  4883. visibility:hidden;
  4884. }
  4885. #u37103_input {
  4886. position:absolute;
  4887. left:0px;
  4888. top:0px;
  4889. width:132px;
  4890. height:31px;
  4891. padding:2px 2px 2px 2px;
  4892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4893. font-weight:400;
  4894. font-style:normal;
  4895. font-size:13px;
  4896. letter-spacing:normal;
  4897. color:#AAAAAA;
  4898. vertical-align:none;
  4899. text-align:left;
  4900. text-transform:none;
  4901. background-color:transparent;
  4902. border-color:transparent;
  4903. }
  4904. #u37103_input.disabled {
  4905. position:absolute;
  4906. left:0px;
  4907. top:0px;
  4908. width:132px;
  4909. height:31px;
  4910. padding:2px 2px 2px 2px;
  4911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4912. font-weight:400;
  4913. font-style:normal;
  4914. font-size:13px;
  4915. letter-spacing:normal;
  4916. color:#AAAAAA;
  4917. vertical-align:none;
  4918. text-align:left;
  4919. text-transform:none;
  4920. background-color:transparent;
  4921. border-color:transparent;
  4922. }
  4923. #u37103_div {
  4924. border-width:0px;
  4925. position:absolute;
  4926. left:0px;
  4927. top:0px;
  4928. width:132px;
  4929. height:31px;
  4930. background:inherit;
  4931. background-color:rgba(255, 255, 255, 0);
  4932. border:none;
  4933. border-radius:0px;
  4934. -moz-box-shadow:none;
  4935. -webkit-box-shadow:none;
  4936. box-shadow:none;
  4937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4938. font-weight:400;
  4939. font-style:normal;
  4940. color:#AAAAAA;
  4941. }
  4942. #u37103 {
  4943. border-width:0px;
  4944. position:absolute;
  4945. left:1995px;
  4946. top:353px;
  4947. width:132px;
  4948. height:31px;
  4949. display:flex;
  4950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4951. font-weight:400;
  4952. font-style:normal;
  4953. color:#AAAAAA;
  4954. }
  4955. #u37103 .text {
  4956. position:absolute;
  4957. align-self:center;
  4958. padding:2px 2px 2px 2px;
  4959. box-sizing:border-box;
  4960. width:100%;
  4961. }
  4962. #u37103_div.disabled {
  4963. border-width:0px;
  4964. position:absolute;
  4965. left:0px;
  4966. top:0px;
  4967. width:132px;
  4968. height:31px;
  4969. background:inherit;
  4970. background-color:rgba(240, 240, 240, 1);
  4971. border:none;
  4972. border-radius:0px;
  4973. -moz-box-shadow:none;
  4974. -webkit-box-shadow:none;
  4975. box-shadow:none;
  4976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4977. font-weight:400;
  4978. font-style:normal;
  4979. color:#AAAAAA;
  4980. }
  4981. #u37103.disabled {
  4982. }
  4983. #u37104_div {
  4984. border-width:0px;
  4985. position:absolute;
  4986. left:0px;
  4987. top:0px;
  4988. width:91px;
  4989. height:25px;
  4990. background:inherit;
  4991. background-color:rgba(255, 255, 255, 0);
  4992. border:none;
  4993. border-radius:0px;
  4994. -moz-box-shadow:none;
  4995. -webkit-box-shadow:none;
  4996. box-shadow:none;
  4997. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4998. font-weight:500;
  4999. font-style:normal;
  5000. font-size:18px;
  5001. }
  5002. #u37104 {
  5003. border-width:0px;
  5004. position:absolute;
  5005. left:163px;
  5006. top:304px;
  5007. width:91px;
  5008. height:25px;
  5009. display:flex;
  5010. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5011. font-weight:500;
  5012. font-style:normal;
  5013. font-size:18px;
  5014. }
  5015. #u37104 .text {
  5016. position:absolute;
  5017. align-self:flex-start;
  5018. padding:0px 0px 0px 0px;
  5019. box-sizing:border-box;
  5020. width:100%;
  5021. }
  5022. #u37104_text {
  5023. border-width:0px;
  5024. white-space:nowrap;
  5025. text-transform:none;
  5026. }
  5027. #u37105 {
  5028. border-width:0px;
  5029. position:absolute;
  5030. left:0px;
  5031. top:0px;
  5032. width:0px;
  5033. height:0px;
  5034. }
  5035. #u37106_div {
  5036. border-width:0px;
  5037. position:absolute;
  5038. left:0px;
  5039. top:0px;
  5040. width:353px;
  5041. height:134px;
  5042. background:inherit;
  5043. background-color:rgba(255, 255, 255, 1);
  5044. border:none;
  5045. border-radius:4px;
  5046. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5047. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5048. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5049. }
  5050. #u37106 {
  5051. border-width:0px;
  5052. position:absolute;
  5053. left:163px;
  5054. top:339px;
  5055. width:353px;
  5056. height:134px;
  5057. display:flex;
  5058. }
  5059. #u37106 .text {
  5060. position:absolute;
  5061. align-self:center;
  5062. padding:2px 2px 2px 2px;
  5063. box-sizing:border-box;
  5064. width:100%;
  5065. }
  5066. #u37106_text {
  5067. border-width:0px;
  5068. word-wrap:break-word;
  5069. text-transform:none;
  5070. visibility:hidden;
  5071. }
  5072. #u37107_div {
  5073. border-width:0px;
  5074. position:absolute;
  5075. left:0px;
  5076. top:0px;
  5077. width:163px;
  5078. height:25px;
  5079. background:inherit;
  5080. background-color:rgba(255, 255, 255, 0);
  5081. border:none;
  5082. border-radius:0px;
  5083. -moz-box-shadow:none;
  5084. -webkit-box-shadow:none;
  5085. box-shadow:none;
  5086. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5087. font-weight:500;
  5088. font-style:normal;
  5089. font-size:18px;
  5090. }
  5091. #u37107 {
  5092. border-width:0px;
  5093. position:absolute;
  5094. left:187px;
  5095. top:360px;
  5096. width:163px;
  5097. height:25px;
  5098. display:flex;
  5099. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5100. font-weight:500;
  5101. font-style:normal;
  5102. font-size:18px;
  5103. }
  5104. #u37107 .text {
  5105. position:absolute;
  5106. align-self:flex-start;
  5107. padding:0px 0px 0px 0px;
  5108. box-sizing:border-box;
  5109. width:100%;
  5110. }
  5111. #u37107_text {
  5112. border-width:0px;
  5113. white-space:nowrap;
  5114. text-transform:none;
  5115. }
  5116. #u37108_div {
  5117. border-width:0px;
  5118. position:absolute;
  5119. left:0px;
  5120. top:0px;
  5121. width:133px;
  5122. height:40px;
  5123. background:inherit;
  5124. background-color:rgba(255, 255, 255, 0);
  5125. border:none;
  5126. border-radius:0px;
  5127. -moz-box-shadow:none;
  5128. -webkit-box-shadow:none;
  5129. box-shadow:none;
  5130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5131. font-weight:400;
  5132. font-style:normal;
  5133. font-size:12px;
  5134. line-height:20px;
  5135. }
  5136. #u37108 {
  5137. border-width:0px;
  5138. position:absolute;
  5139. left:202px;
  5140. top:420px;
  5141. width:133px;
  5142. height:40px;
  5143. display:flex;
  5144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5145. font-weight:400;
  5146. font-style:normal;
  5147. font-size:12px;
  5148. line-height:20px;
  5149. }
  5150. #u37108 .text {
  5151. position:absolute;
  5152. align-self:flex-start;
  5153. padding:0px 0px 0px 0px;
  5154. box-sizing:border-box;
  5155. width:100%;
  5156. }
  5157. #u37108_text {
  5158. border-width:0px;
  5159. white-space:nowrap;
  5160. text-transform:none;
  5161. }
  5162. #u37109_div {
  5163. border-width:0px;
  5164. position:absolute;
  5165. left:0px;
  5166. top:0px;
  5167. width:50px;
  5168. height:20px;
  5169. background:inherit;
  5170. background-color:rgba(128, 128, 255, 1);
  5171. border:none;
  5172. border-right:0px;
  5173. border-radius:7px;
  5174. border-top-right-radius:0px;
  5175. border-bottom-right-radius:0px;
  5176. -moz-box-shadow:none;
  5177. -webkit-box-shadow:none;
  5178. box-shadow:none;
  5179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5180. font-weight:400;
  5181. font-style:normal;
  5182. font-size:12px;
  5183. color:#FFFFFF;
  5184. line-height:20px;
  5185. }
  5186. #u37109 {
  5187. border-width:0px;
  5188. position:absolute;
  5189. left:466px;
  5190. top:339px;
  5191. width:50px;
  5192. height:20px;
  5193. display:flex;
  5194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5195. font-weight:400;
  5196. font-style:normal;
  5197. font-size:12px;
  5198. color:#FFFFFF;
  5199. line-height:20px;
  5200. }
  5201. #u37109 .text {
  5202. position:absolute;
  5203. align-self:center;
  5204. padding:0px 0px 0px 5px;
  5205. box-sizing:border-box;
  5206. width:100%;
  5207. }
  5208. #u37109_text {
  5209. border-width:0px;
  5210. word-wrap:break-word;
  5211. text-transform:none;
  5212. }
  5213. #u37110_img {
  5214. border-width:0px;
  5215. position:absolute;
  5216. left:0px;
  5217. top:0px;
  5218. width:9px;
  5219. height:14px;
  5220. }
  5221. #u37110 {
  5222. border-width:0px;
  5223. position:absolute;
  5224. left:187px;
  5225. top:393px;
  5226. width:9px;
  5227. height:14px;
  5228. display:flex;
  5229. }
  5230. #u37110 .text {
  5231. position:absolute;
  5232. align-self:center;
  5233. padding:2px 2px 2px 2px;
  5234. box-sizing:border-box;
  5235. width:100%;
  5236. }
  5237. #u37110_text {
  5238. border-width:0px;
  5239. word-wrap:break-word;
  5240. text-transform:none;
  5241. visibility:hidden;
  5242. }
  5243. #u37111_div {
  5244. border-width:0px;
  5245. position:absolute;
  5246. left:0px;
  5247. top:0px;
  5248. width:260px;
  5249. height:20px;
  5250. background:inherit;
  5251. background-color:rgba(255, 255, 255, 0);
  5252. border:none;
  5253. border-radius:0px;
  5254. -moz-box-shadow:none;
  5255. -webkit-box-shadow:none;
  5256. box-shadow:none;
  5257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5258. font-weight:400;
  5259. font-style:normal;
  5260. font-size:12px;
  5261. line-height:20px;
  5262. }
  5263. #u37111 {
  5264. border-width:0px;
  5265. position:absolute;
  5266. left:202px;
  5267. top:390px;
  5268. width:260px;
  5269. height:20px;
  5270. display:flex;
  5271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5272. font-weight:400;
  5273. font-style:normal;
  5274. font-size:12px;
  5275. line-height:20px;
  5276. }
  5277. #u37111 .text {
  5278. position:absolute;
  5279. align-self:flex-start;
  5280. padding:0px 0px 0px 0px;
  5281. box-sizing:border-box;
  5282. width:100%;
  5283. }
  5284. #u37111_text {
  5285. border-width:0px;
  5286. white-space:nowrap;
  5287. text-transform:none;
  5288. }
  5289. #u37112 {
  5290. border-width:0px;
  5291. position:absolute;
  5292. left:0px;
  5293. top:0px;
  5294. width:0px;
  5295. height:0px;
  5296. }
  5297. #u37113_div {
  5298. border-width:0px;
  5299. position:absolute;
  5300. left:0px;
  5301. top:0px;
  5302. width:800px;
  5303. height:345px;
  5304. background:inherit;
  5305. background-color:rgba(255, 255, 255, 1);
  5306. border:none;
  5307. border-radius:4px;
  5308. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5309. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5310. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5311. }
  5312. #u37113 {
  5313. border-width:0px;
  5314. position:absolute;
  5315. left:445px;
  5316. top:593px;
  5317. width:800px;
  5318. height:345px;
  5319. display:flex;
  5320. }
  5321. #u37113 .text {
  5322. position:absolute;
  5323. align-self:center;
  5324. padding:2px 2px 2px 2px;
  5325. box-sizing:border-box;
  5326. width:100%;
  5327. }
  5328. #u37113_text {
  5329. border-width:0px;
  5330. word-wrap:break-word;
  5331. text-transform:none;
  5332. visibility:hidden;
  5333. }
  5334. #u37114_div {
  5335. border-width:0px;
  5336. position:absolute;
  5337. left:0px;
  5338. top:0px;
  5339. width:117px;
  5340. height:24px;
  5341. background:inherit;
  5342. background-color:rgba(255, 255, 255, 1);
  5343. border:none;
  5344. border-left:0px;
  5345. border-top:0px;
  5346. border-right:0px;
  5347. border-radius:0px;
  5348. border-bottom-right-radius:0px;
  5349. border-bottom-left-radius:0px;
  5350. -moz-box-shadow:none;
  5351. -webkit-box-shadow:none;
  5352. box-shadow:none;
  5353. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5354. font-weight:500;
  5355. font-style:normal;
  5356. font-size:14px;
  5357. text-align:left;
  5358. }
  5359. #u37114 {
  5360. border-width:0px;
  5361. position:absolute;
  5362. left:464px;
  5363. top:608px;
  5364. width:117px;
  5365. height:24px;
  5366. display:flex;
  5367. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5368. font-weight:500;
  5369. font-style:normal;
  5370. font-size:14px;
  5371. text-align:left;
  5372. }
  5373. #u37114 .text {
  5374. position:absolute;
  5375. align-self:center;
  5376. padding:2px 2px 2px 2px;
  5377. box-sizing:border-box;
  5378. width:100%;
  5379. }
  5380. #u37114_text {
  5381. border-width:0px;
  5382. white-space:nowrap;
  5383. text-transform:none;
  5384. }
  5385. #u37115_img {
  5386. border-width:0px;
  5387. position:absolute;
  5388. left:0px;
  5389. top:0px;
  5390. width:165px;
  5391. height:116px;
  5392. }
  5393. #u37115 {
  5394. border-width:0px;
  5395. position:absolute;
  5396. left:469px;
  5397. top:661px;
  5398. width:165px;
  5399. height:116px;
  5400. display:flex;
  5401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5402. font-weight:400;
  5403. font-style:normal;
  5404. font-size:18px;
  5405. }
  5406. #u37115 .text {
  5407. position:absolute;
  5408. align-self:center;
  5409. padding:2px 2px 2px 2px;
  5410. box-sizing:border-box;
  5411. width:100%;
  5412. }
  5413. #u37115_text {
  5414. border-width:0px;
  5415. word-wrap:break-word;
  5416. text-transform:none;
  5417. }
  5418. #u37116_div {
  5419. border-width:0px;
  5420. position:absolute;
  5421. left:0px;
  5422. top:0px;
  5423. width:40px;
  5424. height:40px;
  5425. background:inherit;
  5426. background-color:rgba(255, 255, 255, 0);
  5427. border:none;
  5428. border-top:0px;
  5429. border-right:0px;
  5430. border-bottom:0px;
  5431. border-radius:0px;
  5432. border-top-left-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:18px;
  5441. text-align:center;
  5442. }
  5443. #u37116 {
  5444. border-width:0px;
  5445. position:absolute;
  5446. left:1205px;
  5447. top:593px;
  5448. width:40px;
  5449. height:40px;
  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:18px;
  5455. text-align:center;
  5456. }
  5457. #u37116 .text {
  5458. position:absolute;
  5459. align-self:center;
  5460. padding:5px 10px 5px 0px;
  5461. box-sizing:border-box;
  5462. width:100%;
  5463. }
  5464. #u37116_text {
  5465. border-width:0px;
  5466. word-wrap:break-word;
  5467. text-transform:none;
  5468. }
  5469. #u37117_img {
  5470. border-width:0px;
  5471. position:absolute;
  5472. left:0px;
  5473. top:0px;
  5474. width:165px;
  5475. height:116px;
  5476. }
  5477. #u37117 {
  5478. border-width:0px;
  5479. position:absolute;
  5480. left:664px;
  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. #u37117 .text {
  5491. position:absolute;
  5492. align-self:center;
  5493. padding:2px 2px 2px 2px;
  5494. box-sizing:border-box;
  5495. width:100%;
  5496. }
  5497. #u37117_text {
  5498. border-width:0px;
  5499. word-wrap:break-word;
  5500. text-transform:none;
  5501. }
  5502. #u37118_img {
  5503. border-width:0px;
  5504. position:absolute;
  5505. left:0px;
  5506. top:0px;
  5507. width:165px;
  5508. height:116px;
  5509. }
  5510. #u37118 {
  5511. border-width:0px;
  5512. position:absolute;
  5513. left:859px;
  5514. top:661px;
  5515. width:165px;
  5516. height:116px;
  5517. display:flex;
  5518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5519. font-weight:400;
  5520. font-style:normal;
  5521. font-size:18px;
  5522. }
  5523. #u37118 .text {
  5524. position:absolute;
  5525. align-self:center;
  5526. padding:2px 2px 2px 2px;
  5527. box-sizing:border-box;
  5528. width:100%;
  5529. }
  5530. #u37118_text {
  5531. border-width:0px;
  5532. word-wrap:break-word;
  5533. text-transform:none;
  5534. }
  5535. #u37119_img {
  5536. border-width:0px;
  5537. position:absolute;
  5538. left:0px;
  5539. top:0px;
  5540. width:165px;
  5541. height:116px;
  5542. }
  5543. #u37119 {
  5544. border-width:0px;
  5545. position:absolute;
  5546. left:1054px;
  5547. top:661px;
  5548. width:165px;
  5549. height:116px;
  5550. display:flex;
  5551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5552. font-weight:400;
  5553. font-style:normal;
  5554. font-size:18px;
  5555. }
  5556. #u37119 .text {
  5557. position:absolute;
  5558. align-self:center;
  5559. padding:2px 2px 2px 2px;
  5560. box-sizing:border-box;
  5561. width:100%;
  5562. }
  5563. #u37119_text {
  5564. border-width:0px;
  5565. word-wrap:break-word;
  5566. text-transform:none;
  5567. }
  5568. #u37120_img {
  5569. border-width:0px;
  5570. position:absolute;
  5571. left:0px;
  5572. top:0px;
  5573. width:165px;
  5574. height:116px;
  5575. }
  5576. #u37120 {
  5577. border-width:0px;
  5578. position:absolute;
  5579. left:469px;
  5580. top:797px;
  5581. width:165px;
  5582. height:116px;
  5583. display:flex;
  5584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5585. font-weight:400;
  5586. font-style:normal;
  5587. font-size:18px;
  5588. }
  5589. #u37120 .text {
  5590. position:absolute;
  5591. align-self:center;
  5592. padding:2px 2px 2px 2px;
  5593. box-sizing:border-box;
  5594. width:100%;
  5595. }
  5596. #u37120_text {
  5597. border-width:0px;
  5598. word-wrap:break-word;
  5599. text-transform:none;
  5600. }
  5601. #u37121_img {
  5602. border-width:0px;
  5603. position:absolute;
  5604. left:0px;
  5605. top:0px;
  5606. width:165px;
  5607. height:116px;
  5608. }
  5609. #u37121 {
  5610. border-width:0px;
  5611. position:absolute;
  5612. left:664px;
  5613. top:797px;
  5614. width:165px;
  5615. height:116px;
  5616. display:flex;
  5617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5618. font-weight:400;
  5619. font-style:normal;
  5620. font-size:18px;
  5621. }
  5622. #u37121 .text {
  5623. position:absolute;
  5624. align-self:center;
  5625. padding:2px 2px 2px 2px;
  5626. box-sizing:border-box;
  5627. width:100%;
  5628. }
  5629. #u37121_text {
  5630. border-width:0px;
  5631. word-wrap:break-word;
  5632. text-transform:none;
  5633. }
  5634. #u37122 {
  5635. border-width:0px;
  5636. position:absolute;
  5637. left:0px;
  5638. top:0px;
  5639. width:0px;
  5640. height:0px;
  5641. }
  5642. #u37123_div {
  5643. border-width:0px;
  5644. position:absolute;
  5645. left:0px;
  5646. top:0px;
  5647. width:353px;
  5648. height:160px;
  5649. background:inherit;
  5650. background-color:rgba(255, 255, 255, 1);
  5651. border:none;
  5652. border-radius:4px;
  5653. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5654. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5655. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5656. }
  5657. #u37123 {
  5658. border-width:0px;
  5659. position:absolute;
  5660. left:526px;
  5661. top:114px;
  5662. width:353px;
  5663. height:160px;
  5664. display:flex;
  5665. }
  5666. #u37123 .text {
  5667. position:absolute;
  5668. align-self:center;
  5669. padding:2px 2px 2px 2px;
  5670. box-sizing:border-box;
  5671. width:100%;
  5672. }
  5673. #u37123_text {
  5674. border-width:0px;
  5675. word-wrap:break-word;
  5676. text-transform:none;
  5677. visibility:hidden;
  5678. }
  5679. #u37124_div {
  5680. border-width:0px;
  5681. position:absolute;
  5682. left:0px;
  5683. top:0px;
  5684. width:109px;
  5685. height:25px;
  5686. background:inherit;
  5687. background-color:rgba(255, 255, 255, 0);
  5688. border:none;
  5689. border-radius:0px;
  5690. -moz-box-shadow:none;
  5691. -webkit-box-shadow:none;
  5692. box-shadow:none;
  5693. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5694. font-weight:500;
  5695. font-style:normal;
  5696. font-size:18px;
  5697. }
  5698. #u37124 {
  5699. border-width:0px;
  5700. position:absolute;
  5701. left:550px;
  5702. top:125px;
  5703. width:109px;
  5704. height:25px;
  5705. display:flex;
  5706. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5707. font-weight:500;
  5708. font-style:normal;
  5709. font-size:18px;
  5710. }
  5711. #u37124 .text {
  5712. position:absolute;
  5713. align-self:flex-start;
  5714. padding:0px 0px 0px 0px;
  5715. box-sizing:border-box;
  5716. width:100%;
  5717. }
  5718. #u37124_text {
  5719. border-width:0px;
  5720. white-space:nowrap;
  5721. text-transform:none;
  5722. }
  5723. #u37125_div {
  5724. border-width:0px;
  5725. position:absolute;
  5726. left:0px;
  5727. top:0px;
  5728. width:205px;
  5729. height:75px;
  5730. background:inherit;
  5731. background-color:rgba(255, 255, 255, 0);
  5732. border:none;
  5733. border-radius:0px;
  5734. -moz-box-shadow:none;
  5735. -webkit-box-shadow:none;
  5736. box-shadow:none;
  5737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5738. font-weight:400;
  5739. font-style:normal;
  5740. font-size:12px;
  5741. line-height:25px;
  5742. }
  5743. #u37125 {
  5744. border-width:0px;
  5745. position:absolute;
  5746. left:565px;
  5747. top:188px;
  5748. width:205px;
  5749. height:75px;
  5750. display:flex;
  5751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5752. font-weight:400;
  5753. font-style:normal;
  5754. font-size:12px;
  5755. line-height:25px;
  5756. }
  5757. #u37125 .text {
  5758. position:absolute;
  5759. align-self:flex-start;
  5760. padding:0px 0px 0px 0px;
  5761. box-sizing:border-box;
  5762. width:100%;
  5763. }
  5764. #u37125_text {
  5765. border-width:0px;
  5766. white-space:nowrap;
  5767. text-transform:none;
  5768. }
  5769. #u37126_div {
  5770. border-width:0px;
  5771. position:absolute;
  5772. left:0px;
  5773. top:0px;
  5774. width:36px;
  5775. height:20px;
  5776. background:inherit;
  5777. background-color:rgba(51, 51, 51, 1);
  5778. border:none;
  5779. border-left:0px;
  5780. border-radius:7px;
  5781. border-top-left-radius:0px;
  5782. border-bottom-left-radius:0px;
  5783. -moz-box-shadow:none;
  5784. -webkit-box-shadow:none;
  5785. box-shadow:none;
  5786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5787. font-weight:400;
  5788. font-style:normal;
  5789. font-size:12px;
  5790. color:#FFFFFF;
  5791. line-height:20px;
  5792. }
  5793. #u37126 {
  5794. border-width:0px;
  5795. position:absolute;
  5796. left:526px;
  5797. top:114px;
  5798. width:36px;
  5799. height:20px;
  5800. display:flex;
  5801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5802. font-weight:400;
  5803. font-style:normal;
  5804. font-size:12px;
  5805. color:#FFFFFF;
  5806. line-height:20px;
  5807. }
  5808. #u37126 .text {
  5809. position:absolute;
  5810. align-self:center;
  5811. padding:0px 0px 0px 5px;
  5812. box-sizing:border-box;
  5813. width:100%;
  5814. }
  5815. #u37126_text {
  5816. border-width:0px;
  5817. word-wrap:break-word;
  5818. text-transform:none;
  5819. }
  5820. #u37127_img {
  5821. border-width:0px;
  5822. position:absolute;
  5823. left:0px;
  5824. top:0px;
  5825. width:9px;
  5826. height:14px;
  5827. }
  5828. #u37127 {
  5829. border-width:0px;
  5830. position:absolute;
  5831. left:550px;
  5832. top:158px;
  5833. width:9px;
  5834. height:14px;
  5835. display:flex;
  5836. }
  5837. #u37127 .text {
  5838. position:absolute;
  5839. align-self:center;
  5840. padding:2px 2px 2px 2px;
  5841. box-sizing:border-box;
  5842. width:100%;
  5843. }
  5844. #u37127_text {
  5845. border-width:0px;
  5846. word-wrap:break-word;
  5847. text-transform:none;
  5848. visibility:hidden;
  5849. }
  5850. #u37128_div {
  5851. border-width:0px;
  5852. position:absolute;
  5853. left:0px;
  5854. top:0px;
  5855. width:260px;
  5856. height:20px;
  5857. background:inherit;
  5858. background-color:rgba(255, 255, 255, 0);
  5859. border:none;
  5860. border-radius:0px;
  5861. -moz-box-shadow:none;
  5862. -webkit-box-shadow:none;
  5863. box-shadow:none;
  5864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5865. font-weight:400;
  5866. font-style:normal;
  5867. font-size:12px;
  5868. line-height:20px;
  5869. }
  5870. #u37128 {
  5871. border-width:0px;
  5872. position:absolute;
  5873. left:565px;
  5874. top:155px;
  5875. width:260px;
  5876. height:20px;
  5877. display:flex;
  5878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5879. font-weight:400;
  5880. font-style:normal;
  5881. font-size:12px;
  5882. line-height:20px;
  5883. }
  5884. #u37128 .text {
  5885. position:absolute;
  5886. align-self:flex-start;
  5887. padding:0px 0px 0px 0px;
  5888. box-sizing:border-box;
  5889. width:100%;
  5890. }
  5891. #u37128_text {
  5892. border-width:0px;
  5893. white-space:nowrap;
  5894. text-transform:none;
  5895. }
  5896. #u37129 {
  5897. border-width:0px;
  5898. position:absolute;
  5899. left:0px;
  5900. top:0px;
  5901. width:0px;
  5902. height:0px;
  5903. }
  5904. #u37130_div {
  5905. border-width:0px;
  5906. position:absolute;
  5907. left:0px;
  5908. top:0px;
  5909. width:353px;
  5910. height:134px;
  5911. background:inherit;
  5912. background-color:rgba(255, 255, 255, 1);
  5913. border:none;
  5914. border-radius:4px;
  5915. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5916. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5917. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5918. }
  5919. #u37130 {
  5920. border-width:0px;
  5921. position:absolute;
  5922. left:531px;
  5923. top:339px;
  5924. width:353px;
  5925. height:134px;
  5926. display:flex;
  5927. }
  5928. #u37130 .text {
  5929. position:absolute;
  5930. align-self:center;
  5931. padding:2px 2px 2px 2px;
  5932. box-sizing:border-box;
  5933. width:100%;
  5934. }
  5935. #u37130_text {
  5936. border-width:0px;
  5937. word-wrap:break-word;
  5938. text-transform:none;
  5939. visibility:hidden;
  5940. }
  5941. #u37131_div {
  5942. border-width:0px;
  5943. position:absolute;
  5944. left:0px;
  5945. top:0px;
  5946. width:163px;
  5947. height:25px;
  5948. background:inherit;
  5949. background-color:rgba(255, 255, 255, 0);
  5950. border:none;
  5951. border-radius:0px;
  5952. -moz-box-shadow:none;
  5953. -webkit-box-shadow:none;
  5954. box-shadow:none;
  5955. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5956. font-weight:500;
  5957. font-style:normal;
  5958. font-size:18px;
  5959. }
  5960. #u37131 {
  5961. border-width:0px;
  5962. position:absolute;
  5963. left:555px;
  5964. top:360px;
  5965. width:163px;
  5966. height:25px;
  5967. display:flex;
  5968. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5969. font-weight:500;
  5970. font-style:normal;
  5971. font-size:18px;
  5972. }
  5973. #u37131 .text {
  5974. position:absolute;
  5975. align-self:flex-start;
  5976. padding:0px 0px 0px 0px;
  5977. box-sizing:border-box;
  5978. width:100%;
  5979. }
  5980. #u37131_text {
  5981. border-width:0px;
  5982. white-space:nowrap;
  5983. text-transform:none;
  5984. }
  5985. #u37132_div {
  5986. border-width:0px;
  5987. position:absolute;
  5988. left:0px;
  5989. top:0px;
  5990. width:157px;
  5991. height:40px;
  5992. background:inherit;
  5993. background-color:rgba(255, 255, 255, 0);
  5994. border:none;
  5995. border-radius:0px;
  5996. -moz-box-shadow:none;
  5997. -webkit-box-shadow:none;
  5998. box-shadow:none;
  5999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6000. font-weight:400;
  6001. font-style:normal;
  6002. font-size:12px;
  6003. line-height:20px;
  6004. }
  6005. #u37132 {
  6006. border-width:0px;
  6007. position:absolute;
  6008. left:570px;
  6009. top:420px;
  6010. width:157px;
  6011. height:40px;
  6012. display:flex;
  6013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6014. font-weight:400;
  6015. font-style:normal;
  6016. font-size:12px;
  6017. line-height:20px;
  6018. }
  6019. #u37132 .text {
  6020. position:absolute;
  6021. align-self:flex-start;
  6022. padding:0px 0px 0px 0px;
  6023. box-sizing:border-box;
  6024. width:100%;
  6025. }
  6026. #u37132_text {
  6027. border-width:0px;
  6028. white-space:nowrap;
  6029. text-transform:none;
  6030. }
  6031. #u37133_div {
  6032. border-width:0px;
  6033. position:absolute;
  6034. left:0px;
  6035. top:0px;
  6036. width:50px;
  6037. height:20px;
  6038. background:inherit;
  6039. background-color:rgba(128, 128, 255, 1);
  6040. border:none;
  6041. border-right:0px;
  6042. border-radius:7px;
  6043. border-top-right-radius:0px;
  6044. border-bottom-right-radius:0px;
  6045. -moz-box-shadow:none;
  6046. -webkit-box-shadow:none;
  6047. box-shadow:none;
  6048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6049. font-weight:400;
  6050. font-style:normal;
  6051. font-size:12px;
  6052. color:#FFFFFF;
  6053. line-height:20px;
  6054. }
  6055. #u37133 {
  6056. border-width:0px;
  6057. position:absolute;
  6058. left:834px;
  6059. top:339px;
  6060. width:50px;
  6061. height:20px;
  6062. display:flex;
  6063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6064. font-weight:400;
  6065. font-style:normal;
  6066. font-size:12px;
  6067. color:#FFFFFF;
  6068. line-height:20px;
  6069. }
  6070. #u37133 .text {
  6071. position:absolute;
  6072. align-self:center;
  6073. padding:0px 0px 0px 5px;
  6074. box-sizing:border-box;
  6075. width:100%;
  6076. }
  6077. #u37133_text {
  6078. border-width:0px;
  6079. word-wrap:break-word;
  6080. text-transform:none;
  6081. }
  6082. #u37134_img {
  6083. border-width:0px;
  6084. position:absolute;
  6085. left:0px;
  6086. top:0px;
  6087. width:9px;
  6088. height:14px;
  6089. }
  6090. #u37134 {
  6091. border-width:0px;
  6092. position:absolute;
  6093. left:555px;
  6094. top:393px;
  6095. width:9px;
  6096. height:14px;
  6097. display:flex;
  6098. }
  6099. #u37134 .text {
  6100. position:absolute;
  6101. align-self:center;
  6102. padding:2px 2px 2px 2px;
  6103. box-sizing:border-box;
  6104. width:100%;
  6105. }
  6106. #u37134_text {
  6107. border-width:0px;
  6108. word-wrap:break-word;
  6109. text-transform:none;
  6110. visibility:hidden;
  6111. }
  6112. #u37135_div {
  6113. border-width:0px;
  6114. position:absolute;
  6115. left:0px;
  6116. top:0px;
  6117. width:260px;
  6118. height:20px;
  6119. background:inherit;
  6120. background-color:rgba(255, 255, 255, 0);
  6121. border:none;
  6122. border-radius:0px;
  6123. -moz-box-shadow:none;
  6124. -webkit-box-shadow:none;
  6125. box-shadow:none;
  6126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6127. font-weight:400;
  6128. font-style:normal;
  6129. font-size:12px;
  6130. line-height:20px;
  6131. }
  6132. #u37135 {
  6133. border-width:0px;
  6134. position:absolute;
  6135. left:570px;
  6136. top:390px;
  6137. width:260px;
  6138. height:20px;
  6139. display:flex;
  6140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6141. font-weight:400;
  6142. font-style:normal;
  6143. font-size:12px;
  6144. line-height:20px;
  6145. }
  6146. #u37135 .text {
  6147. position:absolute;
  6148. align-self:flex-start;
  6149. padding:0px 0px 0px 0px;
  6150. box-sizing:border-box;
  6151. width:100%;
  6152. }
  6153. #u37135_text {
  6154. border-width:0px;
  6155. white-space:nowrap;
  6156. text-transform:none;
  6157. }
  6158. #u37136 {
  6159. border-width:0px;
  6160. position:absolute;
  6161. left:0px;
  6162. top:0px;
  6163. width:0px;
  6164. height:0px;
  6165. }
  6166. #u37137_div {
  6167. border-width:0px;
  6168. position:absolute;
  6169. left:0px;
  6170. top:0px;
  6171. width:353px;
  6172. height:134px;
  6173. background:inherit;
  6174. background-color:rgba(255, 255, 255, 1);
  6175. border:none;
  6176. border-radius:4px;
  6177. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  6178. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  6179. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  6180. }
  6181. #u37137 {
  6182. border-width:0px;
  6183. position:absolute;
  6184. left:904px;
  6185. top:339px;
  6186. width:353px;
  6187. height:134px;
  6188. display:flex;
  6189. }
  6190. #u37137 .text {
  6191. position:absolute;
  6192. align-self:center;
  6193. padding:2px 2px 2px 2px;
  6194. box-sizing:border-box;
  6195. width:100%;
  6196. }
  6197. #u37137_text {
  6198. border-width:0px;
  6199. word-wrap:break-word;
  6200. text-transform:none;
  6201. visibility:hidden;
  6202. }
  6203. #u37138_div {
  6204. border-width:0px;
  6205. position:absolute;
  6206. left:0px;
  6207. top:0px;
  6208. width:163px;
  6209. height:25px;
  6210. background:inherit;
  6211. background-color:rgba(255, 255, 255, 0);
  6212. border:none;
  6213. border-radius:0px;
  6214. -moz-box-shadow:none;
  6215. -webkit-box-shadow:none;
  6216. box-shadow:none;
  6217. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6218. font-weight:500;
  6219. font-style:normal;
  6220. font-size:18px;
  6221. }
  6222. #u37138 {
  6223. border-width:0px;
  6224. position:absolute;
  6225. left:928px;
  6226. top:360px;
  6227. width:163px;
  6228. height:25px;
  6229. display:flex;
  6230. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6231. font-weight:500;
  6232. font-style:normal;
  6233. font-size:18px;
  6234. }
  6235. #u37138 .text {
  6236. position:absolute;
  6237. align-self:flex-start;
  6238. padding:0px 0px 0px 0px;
  6239. box-sizing:border-box;
  6240. width:100%;
  6241. }
  6242. #u37138_text {
  6243. border-width:0px;
  6244. white-space:nowrap;
  6245. text-transform:none;
  6246. }
  6247. #u37139_div {
  6248. border-width:0px;
  6249. position:absolute;
  6250. left:0px;
  6251. top:0px;
  6252. width:157px;
  6253. height:40px;
  6254. background:inherit;
  6255. background-color:rgba(255, 255, 255, 0);
  6256. border:none;
  6257. border-radius:0px;
  6258. -moz-box-shadow:none;
  6259. -webkit-box-shadow:none;
  6260. box-shadow:none;
  6261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6262. font-weight:400;
  6263. font-style:normal;
  6264. font-size:12px;
  6265. line-height:20px;
  6266. }
  6267. #u37139 {
  6268. border-width:0px;
  6269. position:absolute;
  6270. left:943px;
  6271. top:420px;
  6272. width:157px;
  6273. height:40px;
  6274. display:flex;
  6275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6276. font-weight:400;
  6277. font-style:normal;
  6278. font-size:12px;
  6279. line-height:20px;
  6280. }
  6281. #u37139 .text {
  6282. position:absolute;
  6283. align-self:flex-start;
  6284. padding:0px 0px 0px 0px;
  6285. box-sizing:border-box;
  6286. width:100%;
  6287. }
  6288. #u37139_text {
  6289. border-width:0px;
  6290. white-space:nowrap;
  6291. text-transform:none;
  6292. }
  6293. #u37140_div {
  6294. border-width:0px;
  6295. position:absolute;
  6296. left:0px;
  6297. top:0px;
  6298. width:50px;
  6299. height:20px;
  6300. background:inherit;
  6301. background-color:rgba(0, 191, 191, 1);
  6302. border:none;
  6303. border-right:0px;
  6304. border-radius:7px;
  6305. border-top-right-radius:0px;
  6306. border-bottom-right-radius:0px;
  6307. -moz-box-shadow:none;
  6308. -webkit-box-shadow:none;
  6309. box-shadow:none;
  6310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6311. font-weight:400;
  6312. font-style:normal;
  6313. font-size:12px;
  6314. color:#FFFFFF;
  6315. line-height:20px;
  6316. }
  6317. #u37140 {
  6318. border-width:0px;
  6319. position:absolute;
  6320. left:1207px;
  6321. top:339px;
  6322. width:50px;
  6323. height:20px;
  6324. display:flex;
  6325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6326. font-weight:400;
  6327. font-style:normal;
  6328. font-size:12px;
  6329. color:#FFFFFF;
  6330. line-height:20px;
  6331. }
  6332. #u37140 .text {
  6333. position:absolute;
  6334. align-self:center;
  6335. padding:0px 0px 0px 5px;
  6336. box-sizing:border-box;
  6337. width:100%;
  6338. }
  6339. #u37140_text {
  6340. border-width:0px;
  6341. word-wrap:break-word;
  6342. text-transform:none;
  6343. }
  6344. #u37141_img {
  6345. border-width:0px;
  6346. position:absolute;
  6347. left:0px;
  6348. top:0px;
  6349. width:9px;
  6350. height:14px;
  6351. }
  6352. #u37141 {
  6353. border-width:0px;
  6354. position:absolute;
  6355. left:928px;
  6356. top:393px;
  6357. width:9px;
  6358. height:14px;
  6359. display:flex;
  6360. }
  6361. #u37141 .text {
  6362. position:absolute;
  6363. align-self:center;
  6364. padding:2px 2px 2px 2px;
  6365. box-sizing:border-box;
  6366. width:100%;
  6367. }
  6368. #u37141_text {
  6369. border-width:0px;
  6370. word-wrap:break-word;
  6371. text-transform:none;
  6372. visibility:hidden;
  6373. }
  6374. #u37142_div {
  6375. border-width:0px;
  6376. position:absolute;
  6377. left:0px;
  6378. top:0px;
  6379. width:260px;
  6380. height:20px;
  6381. background:inherit;
  6382. background-color:rgba(255, 255, 255, 0);
  6383. border:none;
  6384. border-radius:0px;
  6385. -moz-box-shadow:none;
  6386. -webkit-box-shadow:none;
  6387. box-shadow:none;
  6388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6389. font-weight:400;
  6390. font-style:normal;
  6391. font-size:12px;
  6392. line-height:20px;
  6393. }
  6394. #u37142 {
  6395. border-width:0px;
  6396. position:absolute;
  6397. left:943px;
  6398. top:390px;
  6399. width:260px;
  6400. height:20px;
  6401. display:flex;
  6402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6403. font-weight:400;
  6404. font-style:normal;
  6405. font-size:12px;
  6406. line-height:20px;
  6407. }
  6408. #u37142 .text {
  6409. position:absolute;
  6410. align-self:flex-start;
  6411. padding:0px 0px 0px 0px;
  6412. box-sizing:border-box;
  6413. width:100%;
  6414. }
  6415. #u37142_text {
  6416. border-width:0px;
  6417. white-space:nowrap;
  6418. text-transform:none;
  6419. }
  6420. #u37143 {
  6421. border-width:0px;
  6422. position:absolute;
  6423. left:0px;
  6424. top:0px;
  6425. width:0px;
  6426. height:0px;
  6427. }
  6428. #u37144_div {
  6429. border-width:0px;
  6430. position:absolute;
  6431. left:0px;
  6432. top:0px;
  6433. width:100px;
  6434. height:100px;
  6435. background:inherit;
  6436. background-color:rgba(255, 255, 255, 1);
  6437. box-sizing:border-box;
  6438. border-width:1px;
  6439. border-style:solid;
  6440. border-color:rgba(242, 242, 242, 1);
  6441. border-radius:3px;
  6442. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  6443. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  6444. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  6445. }
  6446. #u37144 {
  6447. border-width:0px;
  6448. position:absolute;
  6449. left:406px;
  6450. top:141px;
  6451. width:100px;
  6452. height:100px;
  6453. display:flex;
  6454. }
  6455. #u37144 .text {
  6456. position:absolute;
  6457. align-self:center;
  6458. padding:2px 2px 2px 2px;
  6459. box-sizing:border-box;
  6460. width:100%;
  6461. }
  6462. #u37144_text {
  6463. border-width:0px;
  6464. word-wrap:break-word;
  6465. text-transform:none;
  6466. visibility:hidden;
  6467. }
  6468. #u37145_div {
  6469. border-width:0px;
  6470. position:absolute;
  6471. left:0px;
  6472. top:0px;
  6473. width:83px;
  6474. height:40px;
  6475. background:inherit;
  6476. background-color:rgba(255, 255, 255, 1);
  6477. box-sizing:border-box;
  6478. border-width:1px;
  6479. border-style:solid;
  6480. border-color:rgba(242, 242, 242, 1);
  6481. border-left:0px;
  6482. border-top:0px;
  6483. border-right:0px;
  6484. border-radius:4px;
  6485. border-bottom-right-radius:0px;
  6486. border-bottom-left-radius:0px;
  6487. -moz-box-shadow:none;
  6488. -webkit-box-shadow:none;
  6489. box-shadow:none;
  6490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6491. font-weight:400;
  6492. font-style:normal;
  6493. font-size:14px;
  6494. }
  6495. #u37145 {
  6496. border-width:0px;
  6497. position:absolute;
  6498. left:414px;
  6499. top:152px;
  6500. width:83px;
  6501. height:40px;
  6502. display:flex;
  6503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6504. font-weight:400;
  6505. font-style:normal;
  6506. font-size:14px;
  6507. }
  6508. #u37145 .text {
  6509. position:absolute;
  6510. align-self:center;
  6511. padding:5px 0px 5px 0px;
  6512. box-sizing:border-box;
  6513. width:100%;
  6514. }
  6515. #u37145_text {
  6516. border-width:0px;
  6517. word-wrap:break-word;
  6518. text-transform:none;
  6519. }
  6520. #u37146_div {
  6521. border-width:0px;
  6522. position:absolute;
  6523. left:0px;
  6524. top:0px;
  6525. width:83px;
  6526. height:40px;
  6527. background:inherit;
  6528. background-color:rgba(255, 255, 255, 1);
  6529. border:none;
  6530. border-left:0px;
  6531. border-top:0px;
  6532. border-right:0px;
  6533. border-radius:4px;
  6534. border-bottom-right-radius:0px;
  6535. border-bottom-left-radius:0px;
  6536. -moz-box-shadow:none;
  6537. -webkit-box-shadow:none;
  6538. box-shadow:none;
  6539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6540. font-weight:400;
  6541. font-style:normal;
  6542. font-size:14px;
  6543. }
  6544. #u37146 {
  6545. border-width:0px;
  6546. position:absolute;
  6547. left:414px;
  6548. top:192px;
  6549. width:83px;
  6550. height:40px;
  6551. display:flex;
  6552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6553. font-weight:400;
  6554. font-style:normal;
  6555. font-size:14px;
  6556. }
  6557. #u37146 .text {
  6558. position:absolute;
  6559. align-self:center;
  6560. padding:5px 0px 5px 0px;
  6561. box-sizing:border-box;
  6562. width:100%;
  6563. }
  6564. #u37146_text {
  6565. border-width:0px;
  6566. word-wrap:break-word;
  6567. text-transform:none;
  6568. }