styles.css 109 KB

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