styles.css 115 KB

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