styles.css 103 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863
  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. #u25237_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. #u25237 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u25237 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u25237_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u25238_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. #u25238 {
  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. #u25238 .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. #u25238_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u25239_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. #u25239 {
  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. #u25239 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u25239_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u25240 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u25241_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u25241 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u25241 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u25241_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u25242_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. #u25242 {
  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. #u25242 .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. #u25242_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u25243_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. #u25243 {
  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. #u25243 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u25243_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u25244 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u25245_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. #u25245_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. #u25245_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. #u25245 {
  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. #u25245 .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. #u25245_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. #u25245.disabled {
  356. }
  357. .u25245_input_option {
  358. font-size:14px;
  359. }
  360. #u25246_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u25246 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u25246 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u25246_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u25247_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. #u25247 {
  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. #u25247 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u25247_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u25248_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. #u25248 {
  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. #u25248 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u25248_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u25249 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u25250_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. #u25250 {
  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. #u25250 .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. #u25250_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u25251_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u25251 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u25251 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u25251_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u25252 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u25253_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. #u25253 {
  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. #u25253 .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. #u25253_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u25254_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u25254 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u25254 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u25254_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u25255 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u25256_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. #u25256 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:399px;
  683. width:33px;
  684. height:22px;
  685. display:flex;
  686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  687. font-weight:400;
  688. font-style:normal;
  689. font-size:16px;
  690. color:#FFFFFF;
  691. }
  692. #u25256 .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. #u25256_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u25257_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u25257 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u25257 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u25257_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u25258 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u25259_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. #u25259 {
  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. #u25259 .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. #u25259_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u25260_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u25260 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u25260 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u25260_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u25261 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u25262_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. #u25262 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:441px;
  851. width:33px;
  852. height:22px;
  853. display:flex;
  854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  855. font-weight:400;
  856. font-style:normal;
  857. font-size:16px;
  858. color:#FFFFFF;
  859. }
  860. #u25262 .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. #u25262_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u25263_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u25263 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u25263 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u25263_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u25264 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u25265_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. #u25265 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:315px;
  935. width:33px;
  936. height:22px;
  937. display:flex;
  938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  939. font-weight:400;
  940. font-style:normal;
  941. font-size:16px;
  942. color:#FFFFFF;
  943. }
  944. #u25265 .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. #u25265_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u25266_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u25266 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u25266 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u25266_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u25267 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u25268_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. #u25268 {
  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. #u25268 .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. #u25268_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u25269_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u25269 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u25269 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u25269_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u25270 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u25271_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. #u25271 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:357px;
  1103. width:33px;
  1104. height:22px;
  1105. display:flex;
  1106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:16px;
  1110. color:#FFFFFF;
  1111. }
  1112. #u25271 .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. #u25271_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u25272_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u25272 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u25272 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u25272_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u25273 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u25274_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. #u25274 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:483px;
  1187. width:33px;
  1188. height:22px;
  1189. display:flex;
  1190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. font-size:16px;
  1194. color:#FFFFFF;
  1195. }
  1196. #u25274 .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. #u25274_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u25275_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u25275 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u25275 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u25275_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u25276 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u25277_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. #u25277 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:525px;
  1271. width:33px;
  1272. height:22px;
  1273. display:flex;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:16px;
  1278. color:#FFFFFF;
  1279. }
  1280. #u25277 .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. #u25277_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u25278_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u25278 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u25278 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u25278_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u25279_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. #u25279 {
  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. #u25279 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u25279_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u25280_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u25280 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u25280 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u25280_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u25281_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. #u25281 {
  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. #u25281 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u25281_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u25282_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u25282 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u25282 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u25282_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u25283 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u25284_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. #u25284 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:231px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u25284 .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. #u25284_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u25285_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u25285 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u25285 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u25285_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u25286 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u25287_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. #u25287 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:273px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u25287 .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. #u25287_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u25288_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u25288 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u25288 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u25288_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u25289_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1260px;
  1644. height:1000px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:none;
  1650. -webkit-box-shadow:none;
  1651. box-shadow:none;
  1652. }
  1653. #u25289 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:330px;
  1657. top:230px;
  1658. width:1260px;
  1659. height:1000px;
  1660. display:flex;
  1661. }
  1662. #u25289 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:2px 2px 2px 2px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u25289_text {
  1670. border-width:0px;
  1671. word-wrap:break-word;
  1672. text-transform:none;
  1673. visibility:hidden;
  1674. }
  1675. #u25290_div {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:0px;
  1679. top:0px;
  1680. width:1260px;
  1681. height:170px;
  1682. background:inherit;
  1683. background-color:rgba(255, 255, 255, 1);
  1684. border:none;
  1685. border-radius:0px;
  1686. -moz-box-shadow:none;
  1687. -webkit-box-shadow:none;
  1688. box-shadow:none;
  1689. }
  1690. #u25290 {
  1691. border-width:0px;
  1692. position:absolute;
  1693. left:330px;
  1694. top:50px;
  1695. width:1260px;
  1696. height:170px;
  1697. display:flex;
  1698. }
  1699. #u25290 .text {
  1700. position:absolute;
  1701. align-self:center;
  1702. padding:2px 2px 2px 2px;
  1703. box-sizing:border-box;
  1704. width:100%;
  1705. }
  1706. #u25290_text {
  1707. border-width:0px;
  1708. word-wrap:break-word;
  1709. text-transform:none;
  1710. visibility:hidden;
  1711. }
  1712. #u25291_div {
  1713. border-width:0px;
  1714. position:absolute;
  1715. left:0px;
  1716. top:0px;
  1717. width:192px;
  1718. height:50px;
  1719. background:inherit;
  1720. background-color:rgba(224, 231, 247, 0);
  1721. border:none;
  1722. border-radius:0px;
  1723. -moz-box-shadow:none;
  1724. -webkit-box-shadow:none;
  1725. box-shadow:none;
  1726. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1727. font-weight:500;
  1728. font-style:normal;
  1729. font-size:18px;
  1730. }
  1731. #u25291 {
  1732. border-width:0px;
  1733. position:absolute;
  1734. left:350px;
  1735. top:50px;
  1736. width:192px;
  1737. height:50px;
  1738. display:flex;
  1739. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1740. font-weight:500;
  1741. font-style:normal;
  1742. font-size:18px;
  1743. }
  1744. #u25291 .text {
  1745. position:absolute;
  1746. align-self:center;
  1747. padding:0px 0px 0px 0px;
  1748. box-sizing:border-box;
  1749. width:100%;
  1750. }
  1751. #u25291_text {
  1752. border-width:0px;
  1753. white-space:nowrap;
  1754. text-transform:none;
  1755. }
  1756. #u25292 {
  1757. border-width:0px;
  1758. position:absolute;
  1759. left:350px;
  1760. top:302px;
  1761. width:1223px;
  1762. height:190px;
  1763. }
  1764. #u25293_img {
  1765. border-width:0px;
  1766. position:absolute;
  1767. left:0px;
  1768. top:0px;
  1769. width:136px;
  1770. height:38px;
  1771. }
  1772. #u25293 {
  1773. border-width:0px;
  1774. position:absolute;
  1775. left:0px;
  1776. top:0px;
  1777. width:136px;
  1778. height:38px;
  1779. display:flex;
  1780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1781. font-weight:400;
  1782. font-style:normal;
  1783. font-size:14px;
  1784. color:#FFFFFF;
  1785. line-height:30px;
  1786. }
  1787. #u25293 .text {
  1788. position:absolute;
  1789. align-self:center;
  1790. padding:2px 0px 2px 0px;
  1791. box-sizing:border-box;
  1792. width:100%;
  1793. }
  1794. #u25293_text {
  1795. border-width:0px;
  1796. word-wrap:break-word;
  1797. text-transform:none;
  1798. }
  1799. #u25294_img {
  1800. border-width:0px;
  1801. position:absolute;
  1802. left:0px;
  1803. top:0px;
  1804. width:136px;
  1805. height:38px;
  1806. }
  1807. #u25294 {
  1808. border-width:0px;
  1809. position:absolute;
  1810. left:136px;
  1811. top:0px;
  1812. width:136px;
  1813. height:38px;
  1814. display:flex;
  1815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1816. font-weight:400;
  1817. font-style:normal;
  1818. font-size:14px;
  1819. color:#FFFFFF;
  1820. line-height:30px;
  1821. }
  1822. #u25294 .text {
  1823. position:absolute;
  1824. align-self:center;
  1825. padding:2px 0px 2px 0px;
  1826. box-sizing:border-box;
  1827. width:100%;
  1828. }
  1829. #u25294_text {
  1830. border-width:0px;
  1831. word-wrap:break-word;
  1832. text-transform:none;
  1833. }
  1834. #u25295_img {
  1835. border-width:0px;
  1836. position:absolute;
  1837. left:0px;
  1838. top:0px;
  1839. width:136px;
  1840. height:38px;
  1841. }
  1842. #u25295 {
  1843. border-width:0px;
  1844. position:absolute;
  1845. left:272px;
  1846. top:0px;
  1847. width:136px;
  1848. height:38px;
  1849. display:flex;
  1850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1851. font-weight:400;
  1852. font-style:normal;
  1853. font-size:14px;
  1854. color:#FFFFFF;
  1855. line-height:30px;
  1856. }
  1857. #u25295 .text {
  1858. position:absolute;
  1859. align-self:center;
  1860. padding:2px 0px 2px 0px;
  1861. box-sizing:border-box;
  1862. width:100%;
  1863. }
  1864. #u25295_text {
  1865. border-width:0px;
  1866. word-wrap:break-word;
  1867. text-transform:none;
  1868. }
  1869. #u25296_img {
  1870. border-width:0px;
  1871. position:absolute;
  1872. left:0px;
  1873. top:0px;
  1874. width:136px;
  1875. height:38px;
  1876. }
  1877. #u25296 {
  1878. border-width:0px;
  1879. position:absolute;
  1880. left:408px;
  1881. top:0px;
  1882. width:136px;
  1883. height:38px;
  1884. display:flex;
  1885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1886. font-weight:400;
  1887. font-style:normal;
  1888. font-size:14px;
  1889. color:#FFFFFF;
  1890. line-height:30px;
  1891. }
  1892. #u25296 .text {
  1893. position:absolute;
  1894. align-self:center;
  1895. padding:2px 0px 2px 0px;
  1896. box-sizing:border-box;
  1897. width:100%;
  1898. }
  1899. #u25296_text {
  1900. border-width:0px;
  1901. word-wrap:break-word;
  1902. text-transform:none;
  1903. }
  1904. #u25297_img {
  1905. border-width:0px;
  1906. position:absolute;
  1907. left:0px;
  1908. top:0px;
  1909. width:136px;
  1910. height:38px;
  1911. }
  1912. #u25297 {
  1913. border-width:0px;
  1914. position:absolute;
  1915. left:544px;
  1916. top:0px;
  1917. width:136px;
  1918. height:38px;
  1919. display:flex;
  1920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1921. font-weight:400;
  1922. font-style:normal;
  1923. font-size:14px;
  1924. color:#FFFFFF;
  1925. line-height:30px;
  1926. }
  1927. #u25297 .text {
  1928. position:absolute;
  1929. align-self:center;
  1930. padding:2px 0px 2px 0px;
  1931. box-sizing:border-box;
  1932. width:100%;
  1933. }
  1934. #u25297_text {
  1935. border-width:0px;
  1936. word-wrap:break-word;
  1937. text-transform:none;
  1938. }
  1939. #u25298_img {
  1940. border-width:0px;
  1941. position:absolute;
  1942. left:0px;
  1943. top:0px;
  1944. width:136px;
  1945. height:38px;
  1946. }
  1947. #u25298 {
  1948. border-width:0px;
  1949. position:absolute;
  1950. left:680px;
  1951. top:0px;
  1952. width:136px;
  1953. height:38px;
  1954. display:flex;
  1955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1956. font-weight:400;
  1957. font-style:normal;
  1958. font-size:14px;
  1959. color:#FFFFFF;
  1960. line-height:30px;
  1961. }
  1962. #u25298 .text {
  1963. position:absolute;
  1964. align-self:center;
  1965. padding:2px 0px 2px 0px;
  1966. box-sizing:border-box;
  1967. width:100%;
  1968. }
  1969. #u25298_text {
  1970. border-width:0px;
  1971. word-wrap:break-word;
  1972. text-transform:none;
  1973. }
  1974. #u25299_img {
  1975. border-width:0px;
  1976. position:absolute;
  1977. left:0px;
  1978. top:0px;
  1979. width:136px;
  1980. height:38px;
  1981. }
  1982. #u25299 {
  1983. border-width:0px;
  1984. position:absolute;
  1985. left:816px;
  1986. top:0px;
  1987. width:136px;
  1988. height:38px;
  1989. display:flex;
  1990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1991. font-weight:400;
  1992. font-style:normal;
  1993. font-size:14px;
  1994. color:#FFFFFF;
  1995. line-height:30px;
  1996. }
  1997. #u25299 .text {
  1998. position:absolute;
  1999. align-self:center;
  2000. padding:2px 0px 2px 0px;
  2001. box-sizing:border-box;
  2002. width:100%;
  2003. }
  2004. #u25299_text {
  2005. border-width:0px;
  2006. word-wrap:break-word;
  2007. text-transform:none;
  2008. }
  2009. #u25300_img {
  2010. border-width:0px;
  2011. position:absolute;
  2012. left:0px;
  2013. top:0px;
  2014. width:136px;
  2015. height:38px;
  2016. }
  2017. #u25300 {
  2018. border-width:0px;
  2019. position:absolute;
  2020. left:952px;
  2021. top:0px;
  2022. width:136px;
  2023. height:38px;
  2024. display:flex;
  2025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2026. font-weight:400;
  2027. font-style:normal;
  2028. font-size:14px;
  2029. color:#FFFFFF;
  2030. line-height:30px;
  2031. }
  2032. #u25300 .text {
  2033. position:absolute;
  2034. align-self:center;
  2035. padding:2px 0px 2px 0px;
  2036. box-sizing:border-box;
  2037. width:100%;
  2038. }
  2039. #u25300_text {
  2040. border-width:0px;
  2041. word-wrap:break-word;
  2042. text-transform:none;
  2043. }
  2044. #u25301_img {
  2045. border-width:0px;
  2046. position:absolute;
  2047. left:0px;
  2048. top:0px;
  2049. width:135px;
  2050. height:38px;
  2051. }
  2052. #u25301 {
  2053. border-width:0px;
  2054. position:absolute;
  2055. left:1088px;
  2056. top:0px;
  2057. width:135px;
  2058. height:38px;
  2059. display:flex;
  2060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2061. font-weight:400;
  2062. font-style:normal;
  2063. font-size:14px;
  2064. color:#FFFFFF;
  2065. line-height:30px;
  2066. }
  2067. #u25301 .text {
  2068. position:absolute;
  2069. align-self:center;
  2070. padding:2px 0px 2px 0px;
  2071. box-sizing:border-box;
  2072. width:100%;
  2073. }
  2074. #u25301_text {
  2075. border-width:0px;
  2076. word-wrap:break-word;
  2077. text-transform:none;
  2078. }
  2079. #u25302_img {
  2080. border-width:0px;
  2081. position:absolute;
  2082. left:0px;
  2083. top:0px;
  2084. width:136px;
  2085. height:38px;
  2086. }
  2087. #u25302 {
  2088. border-width:0px;
  2089. position:absolute;
  2090. left:0px;
  2091. top:38px;
  2092. width:136px;
  2093. height:38px;
  2094. display:flex;
  2095. font-size:14px;
  2096. line-height:30px;
  2097. }
  2098. #u25302 .text {
  2099. position:absolute;
  2100. align-self:center;
  2101. padding:2px 0px 2px 0px;
  2102. box-sizing:border-box;
  2103. width:100%;
  2104. }
  2105. #u25302_text {
  2106. border-width:0px;
  2107. word-wrap:break-word;
  2108. text-transform:none;
  2109. visibility:hidden;
  2110. }
  2111. #u25303_img {
  2112. border-width:0px;
  2113. position:absolute;
  2114. left:0px;
  2115. top:0px;
  2116. width:136px;
  2117. height:38px;
  2118. }
  2119. #u25303 {
  2120. border-width:0px;
  2121. position:absolute;
  2122. left:136px;
  2123. top:38px;
  2124. width:136px;
  2125. height:38px;
  2126. display:flex;
  2127. font-size:14px;
  2128. line-height:30px;
  2129. }
  2130. #u25303 .text {
  2131. position:absolute;
  2132. align-self:center;
  2133. padding:2px 0px 2px 0px;
  2134. box-sizing:border-box;
  2135. width:100%;
  2136. }
  2137. #u25303_text {
  2138. border-width:0px;
  2139. word-wrap:break-word;
  2140. text-transform:none;
  2141. visibility:hidden;
  2142. }
  2143. #u25304_img {
  2144. border-width:0px;
  2145. position:absolute;
  2146. left:0px;
  2147. top:0px;
  2148. width:136px;
  2149. height:38px;
  2150. }
  2151. #u25304 {
  2152. border-width:0px;
  2153. position:absolute;
  2154. left:272px;
  2155. top:38px;
  2156. width:136px;
  2157. height:38px;
  2158. display:flex;
  2159. font-size:14px;
  2160. line-height:30px;
  2161. }
  2162. #u25304 .text {
  2163. position:absolute;
  2164. align-self:center;
  2165. padding:2px 0px 2px 0px;
  2166. box-sizing:border-box;
  2167. width:100%;
  2168. }
  2169. #u25304_text {
  2170. border-width:0px;
  2171. word-wrap:break-word;
  2172. text-transform:none;
  2173. visibility:hidden;
  2174. }
  2175. #u25305_img {
  2176. border-width:0px;
  2177. position:absolute;
  2178. left:0px;
  2179. top:0px;
  2180. width:136px;
  2181. height:38px;
  2182. }
  2183. #u25305 {
  2184. border-width:0px;
  2185. position:absolute;
  2186. left:408px;
  2187. top:38px;
  2188. width:136px;
  2189. height:38px;
  2190. display:flex;
  2191. font-size:14px;
  2192. line-height:30px;
  2193. }
  2194. #u25305 .text {
  2195. position:absolute;
  2196. align-self:center;
  2197. padding:2px 0px 2px 0px;
  2198. box-sizing:border-box;
  2199. width:100%;
  2200. }
  2201. #u25305_text {
  2202. border-width:0px;
  2203. word-wrap:break-word;
  2204. text-transform:none;
  2205. visibility:hidden;
  2206. }
  2207. #u25306_img {
  2208. border-width:0px;
  2209. position:absolute;
  2210. left:0px;
  2211. top:0px;
  2212. width:136px;
  2213. height:38px;
  2214. }
  2215. #u25306 {
  2216. border-width:0px;
  2217. position:absolute;
  2218. left:544px;
  2219. top:38px;
  2220. width:136px;
  2221. height:38px;
  2222. display:flex;
  2223. font-size:14px;
  2224. line-height:30px;
  2225. }
  2226. #u25306 .text {
  2227. position:absolute;
  2228. align-self:center;
  2229. padding:2px 0px 2px 0px;
  2230. box-sizing:border-box;
  2231. width:100%;
  2232. }
  2233. #u25306_text {
  2234. border-width:0px;
  2235. word-wrap:break-word;
  2236. text-transform:none;
  2237. visibility:hidden;
  2238. }
  2239. #u25307_img {
  2240. border-width:0px;
  2241. position:absolute;
  2242. left:0px;
  2243. top:0px;
  2244. width:136px;
  2245. height:38px;
  2246. }
  2247. #u25307 {
  2248. border-width:0px;
  2249. position:absolute;
  2250. left:680px;
  2251. top:38px;
  2252. width:136px;
  2253. height:38px;
  2254. display:flex;
  2255. font-size:14px;
  2256. line-height:30px;
  2257. }
  2258. #u25307 .text {
  2259. position:absolute;
  2260. align-self:center;
  2261. padding:2px 0px 2px 0px;
  2262. box-sizing:border-box;
  2263. width:100%;
  2264. }
  2265. #u25307_text {
  2266. border-width:0px;
  2267. word-wrap:break-word;
  2268. text-transform:none;
  2269. visibility:hidden;
  2270. }
  2271. #u25308_img {
  2272. border-width:0px;
  2273. position:absolute;
  2274. left:0px;
  2275. top:0px;
  2276. width:136px;
  2277. height:38px;
  2278. }
  2279. #u25308 {
  2280. border-width:0px;
  2281. position:absolute;
  2282. left:816px;
  2283. top:38px;
  2284. width:136px;
  2285. height:38px;
  2286. display:flex;
  2287. font-size:14px;
  2288. line-height:30px;
  2289. }
  2290. #u25308 .text {
  2291. position:absolute;
  2292. align-self:center;
  2293. padding:2px 0px 2px 0px;
  2294. box-sizing:border-box;
  2295. width:100%;
  2296. }
  2297. #u25308_text {
  2298. border-width:0px;
  2299. word-wrap:break-word;
  2300. text-transform:none;
  2301. visibility:hidden;
  2302. }
  2303. #u25309_img {
  2304. border-width:0px;
  2305. position:absolute;
  2306. left:0px;
  2307. top:0px;
  2308. width:136px;
  2309. height:38px;
  2310. }
  2311. #u25309 {
  2312. border-width:0px;
  2313. position:absolute;
  2314. left:952px;
  2315. top:38px;
  2316. width:136px;
  2317. height:38px;
  2318. display:flex;
  2319. font-size:14px;
  2320. line-height:30px;
  2321. }
  2322. #u25309 .text {
  2323. position:absolute;
  2324. align-self:center;
  2325. padding:2px 0px 2px 0px;
  2326. box-sizing:border-box;
  2327. width:100%;
  2328. }
  2329. #u25309_text {
  2330. border-width:0px;
  2331. word-wrap:break-word;
  2332. text-transform:none;
  2333. visibility:hidden;
  2334. }
  2335. #u25310_img {
  2336. border-width:0px;
  2337. position:absolute;
  2338. left:0px;
  2339. top:0px;
  2340. width:135px;
  2341. height:38px;
  2342. }
  2343. #u25310 {
  2344. border-width:0px;
  2345. position:absolute;
  2346. left:1088px;
  2347. top:38px;
  2348. width:135px;
  2349. height:38px;
  2350. display:flex;
  2351. font-size:14px;
  2352. line-height:30px;
  2353. }
  2354. #u25310 .text {
  2355. position:absolute;
  2356. align-self:center;
  2357. padding:2px 0px 2px 0px;
  2358. box-sizing:border-box;
  2359. width:100%;
  2360. }
  2361. #u25310_text {
  2362. border-width:0px;
  2363. word-wrap:break-word;
  2364. text-transform:none;
  2365. visibility:hidden;
  2366. }
  2367. #u25311_img {
  2368. border-width:0px;
  2369. position:absolute;
  2370. left:0px;
  2371. top:0px;
  2372. width:136px;
  2373. height:38px;
  2374. }
  2375. #u25311 {
  2376. border-width:0px;
  2377. position:absolute;
  2378. left:0px;
  2379. top:76px;
  2380. width:136px;
  2381. height:38px;
  2382. display:flex;
  2383. font-size:14px;
  2384. line-height:30px;
  2385. }
  2386. #u25311 .text {
  2387. position:absolute;
  2388. align-self:center;
  2389. padding:2px 0px 2px 0px;
  2390. box-sizing:border-box;
  2391. width:100%;
  2392. }
  2393. #u25311_text {
  2394. border-width:0px;
  2395. word-wrap:break-word;
  2396. text-transform:none;
  2397. visibility:hidden;
  2398. }
  2399. #u25312_img {
  2400. border-width:0px;
  2401. position:absolute;
  2402. left:0px;
  2403. top:0px;
  2404. width:136px;
  2405. height:38px;
  2406. }
  2407. #u25312 {
  2408. border-width:0px;
  2409. position:absolute;
  2410. left:136px;
  2411. top:76px;
  2412. width:136px;
  2413. height:38px;
  2414. display:flex;
  2415. font-size:14px;
  2416. line-height:30px;
  2417. }
  2418. #u25312 .text {
  2419. position:absolute;
  2420. align-self:center;
  2421. padding:2px 0px 2px 0px;
  2422. box-sizing:border-box;
  2423. width:100%;
  2424. }
  2425. #u25312_text {
  2426. border-width:0px;
  2427. word-wrap:break-word;
  2428. text-transform:none;
  2429. visibility:hidden;
  2430. }
  2431. #u25313_img {
  2432. border-width:0px;
  2433. position:absolute;
  2434. left:0px;
  2435. top:0px;
  2436. width:136px;
  2437. height:38px;
  2438. }
  2439. #u25313 {
  2440. border-width:0px;
  2441. position:absolute;
  2442. left:272px;
  2443. top:76px;
  2444. width:136px;
  2445. height:38px;
  2446. display:flex;
  2447. font-size:14px;
  2448. line-height:30px;
  2449. }
  2450. #u25313 .text {
  2451. position:absolute;
  2452. align-self:center;
  2453. padding:2px 0px 2px 0px;
  2454. box-sizing:border-box;
  2455. width:100%;
  2456. }
  2457. #u25313_text {
  2458. border-width:0px;
  2459. word-wrap:break-word;
  2460. text-transform:none;
  2461. visibility:hidden;
  2462. }
  2463. #u25314_img {
  2464. border-width:0px;
  2465. position:absolute;
  2466. left:0px;
  2467. top:0px;
  2468. width:136px;
  2469. height:38px;
  2470. }
  2471. #u25314 {
  2472. border-width:0px;
  2473. position:absolute;
  2474. left:408px;
  2475. top:76px;
  2476. width:136px;
  2477. height:38px;
  2478. display:flex;
  2479. font-size:14px;
  2480. line-height:30px;
  2481. }
  2482. #u25314 .text {
  2483. position:absolute;
  2484. align-self:center;
  2485. padding:2px 0px 2px 0px;
  2486. box-sizing:border-box;
  2487. width:100%;
  2488. }
  2489. #u25314_text {
  2490. border-width:0px;
  2491. word-wrap:break-word;
  2492. text-transform:none;
  2493. visibility:hidden;
  2494. }
  2495. #u25315_img {
  2496. border-width:0px;
  2497. position:absolute;
  2498. left:0px;
  2499. top:0px;
  2500. width:136px;
  2501. height:38px;
  2502. }
  2503. #u25315 {
  2504. border-width:0px;
  2505. position:absolute;
  2506. left:544px;
  2507. top:76px;
  2508. width:136px;
  2509. height:38px;
  2510. display:flex;
  2511. font-size:14px;
  2512. line-height:30px;
  2513. }
  2514. #u25315 .text {
  2515. position:absolute;
  2516. align-self:center;
  2517. padding:2px 0px 2px 0px;
  2518. box-sizing:border-box;
  2519. width:100%;
  2520. }
  2521. #u25315_text {
  2522. border-width:0px;
  2523. word-wrap:break-word;
  2524. text-transform:none;
  2525. visibility:hidden;
  2526. }
  2527. #u25316_img {
  2528. border-width:0px;
  2529. position:absolute;
  2530. left:0px;
  2531. top:0px;
  2532. width:136px;
  2533. height:38px;
  2534. }
  2535. #u25316 {
  2536. border-width:0px;
  2537. position:absolute;
  2538. left:680px;
  2539. top:76px;
  2540. width:136px;
  2541. height:38px;
  2542. display:flex;
  2543. font-size:14px;
  2544. line-height:30px;
  2545. }
  2546. #u25316 .text {
  2547. position:absolute;
  2548. align-self:center;
  2549. padding:2px 0px 2px 0px;
  2550. box-sizing:border-box;
  2551. width:100%;
  2552. }
  2553. #u25316_text {
  2554. border-width:0px;
  2555. word-wrap:break-word;
  2556. text-transform:none;
  2557. visibility:hidden;
  2558. }
  2559. #u25317_img {
  2560. border-width:0px;
  2561. position:absolute;
  2562. left:0px;
  2563. top:0px;
  2564. width:136px;
  2565. height:38px;
  2566. }
  2567. #u25317 {
  2568. border-width:0px;
  2569. position:absolute;
  2570. left:816px;
  2571. top:76px;
  2572. width:136px;
  2573. height:38px;
  2574. display:flex;
  2575. font-size:14px;
  2576. line-height:30px;
  2577. }
  2578. #u25317 .text {
  2579. position:absolute;
  2580. align-self:center;
  2581. padding:2px 0px 2px 0px;
  2582. box-sizing:border-box;
  2583. width:100%;
  2584. }
  2585. #u25317_text {
  2586. border-width:0px;
  2587. word-wrap:break-word;
  2588. text-transform:none;
  2589. visibility:hidden;
  2590. }
  2591. #u25318_img {
  2592. border-width:0px;
  2593. position:absolute;
  2594. left:0px;
  2595. top:0px;
  2596. width:136px;
  2597. height:38px;
  2598. }
  2599. #u25318 {
  2600. border-width:0px;
  2601. position:absolute;
  2602. left:952px;
  2603. top:76px;
  2604. width:136px;
  2605. height:38px;
  2606. display:flex;
  2607. font-size:14px;
  2608. line-height:30px;
  2609. }
  2610. #u25318 .text {
  2611. position:absolute;
  2612. align-self:center;
  2613. padding:2px 0px 2px 0px;
  2614. box-sizing:border-box;
  2615. width:100%;
  2616. }
  2617. #u25318_text {
  2618. border-width:0px;
  2619. word-wrap:break-word;
  2620. text-transform:none;
  2621. visibility:hidden;
  2622. }
  2623. #u25319_img {
  2624. border-width:0px;
  2625. position:absolute;
  2626. left:0px;
  2627. top:0px;
  2628. width:135px;
  2629. height:38px;
  2630. }
  2631. #u25319 {
  2632. border-width:0px;
  2633. position:absolute;
  2634. left:1088px;
  2635. top:76px;
  2636. width:135px;
  2637. height:38px;
  2638. display:flex;
  2639. font-size:14px;
  2640. line-height:30px;
  2641. }
  2642. #u25319 .text {
  2643. position:absolute;
  2644. align-self:center;
  2645. padding:2px 0px 2px 0px;
  2646. box-sizing:border-box;
  2647. width:100%;
  2648. }
  2649. #u25319_text {
  2650. border-width:0px;
  2651. word-wrap:break-word;
  2652. text-transform:none;
  2653. visibility:hidden;
  2654. }
  2655. #u25320_img {
  2656. border-width:0px;
  2657. position:absolute;
  2658. left:0px;
  2659. top:0px;
  2660. width:136px;
  2661. height:38px;
  2662. }
  2663. #u25320 {
  2664. border-width:0px;
  2665. position:absolute;
  2666. left:0px;
  2667. top:114px;
  2668. width:136px;
  2669. height:38px;
  2670. display:flex;
  2671. font-size:14px;
  2672. line-height:30px;
  2673. }
  2674. #u25320 .text {
  2675. position:absolute;
  2676. align-self:center;
  2677. padding:2px 0px 2px 0px;
  2678. box-sizing:border-box;
  2679. width:100%;
  2680. }
  2681. #u25320_text {
  2682. border-width:0px;
  2683. word-wrap:break-word;
  2684. text-transform:none;
  2685. visibility:hidden;
  2686. }
  2687. #u25321_img {
  2688. border-width:0px;
  2689. position:absolute;
  2690. left:0px;
  2691. top:0px;
  2692. width:136px;
  2693. height:38px;
  2694. }
  2695. #u25321 {
  2696. border-width:0px;
  2697. position:absolute;
  2698. left:136px;
  2699. top:114px;
  2700. width:136px;
  2701. height:38px;
  2702. display:flex;
  2703. font-size:14px;
  2704. line-height:30px;
  2705. }
  2706. #u25321 .text {
  2707. position:absolute;
  2708. align-self:center;
  2709. padding:2px 0px 2px 0px;
  2710. box-sizing:border-box;
  2711. width:100%;
  2712. }
  2713. #u25321_text {
  2714. border-width:0px;
  2715. word-wrap:break-word;
  2716. text-transform:none;
  2717. visibility:hidden;
  2718. }
  2719. #u25322_img {
  2720. border-width:0px;
  2721. position:absolute;
  2722. left:0px;
  2723. top:0px;
  2724. width:136px;
  2725. height:38px;
  2726. }
  2727. #u25322 {
  2728. border-width:0px;
  2729. position:absolute;
  2730. left:272px;
  2731. top:114px;
  2732. width:136px;
  2733. height:38px;
  2734. display:flex;
  2735. font-size:14px;
  2736. line-height:30px;
  2737. }
  2738. #u25322 .text {
  2739. position:absolute;
  2740. align-self:center;
  2741. padding:2px 0px 2px 0px;
  2742. box-sizing:border-box;
  2743. width:100%;
  2744. }
  2745. #u25322_text {
  2746. border-width:0px;
  2747. word-wrap:break-word;
  2748. text-transform:none;
  2749. visibility:hidden;
  2750. }
  2751. #u25323_img {
  2752. border-width:0px;
  2753. position:absolute;
  2754. left:0px;
  2755. top:0px;
  2756. width:136px;
  2757. height:38px;
  2758. }
  2759. #u25323 {
  2760. border-width:0px;
  2761. position:absolute;
  2762. left:408px;
  2763. top:114px;
  2764. width:136px;
  2765. height:38px;
  2766. display:flex;
  2767. font-size:14px;
  2768. line-height:30px;
  2769. }
  2770. #u25323 .text {
  2771. position:absolute;
  2772. align-self:center;
  2773. padding:2px 0px 2px 0px;
  2774. box-sizing:border-box;
  2775. width:100%;
  2776. }
  2777. #u25323_text {
  2778. border-width:0px;
  2779. word-wrap:break-word;
  2780. text-transform:none;
  2781. visibility:hidden;
  2782. }
  2783. #u25324_img {
  2784. border-width:0px;
  2785. position:absolute;
  2786. left:0px;
  2787. top:0px;
  2788. width:136px;
  2789. height:38px;
  2790. }
  2791. #u25324 {
  2792. border-width:0px;
  2793. position:absolute;
  2794. left:544px;
  2795. top:114px;
  2796. width:136px;
  2797. height:38px;
  2798. display:flex;
  2799. font-size:14px;
  2800. line-height:30px;
  2801. }
  2802. #u25324 .text {
  2803. position:absolute;
  2804. align-self:center;
  2805. padding:2px 0px 2px 0px;
  2806. box-sizing:border-box;
  2807. width:100%;
  2808. }
  2809. #u25324_text {
  2810. border-width:0px;
  2811. word-wrap:break-word;
  2812. text-transform:none;
  2813. visibility:hidden;
  2814. }
  2815. #u25325_img {
  2816. border-width:0px;
  2817. position:absolute;
  2818. left:0px;
  2819. top:0px;
  2820. width:136px;
  2821. height:38px;
  2822. }
  2823. #u25325 {
  2824. border-width:0px;
  2825. position:absolute;
  2826. left:680px;
  2827. top:114px;
  2828. width:136px;
  2829. height:38px;
  2830. display:flex;
  2831. font-size:14px;
  2832. line-height:30px;
  2833. }
  2834. #u25325 .text {
  2835. position:absolute;
  2836. align-self:center;
  2837. padding:2px 0px 2px 0px;
  2838. box-sizing:border-box;
  2839. width:100%;
  2840. }
  2841. #u25325_text {
  2842. border-width:0px;
  2843. word-wrap:break-word;
  2844. text-transform:none;
  2845. visibility:hidden;
  2846. }
  2847. #u25326_img {
  2848. border-width:0px;
  2849. position:absolute;
  2850. left:0px;
  2851. top:0px;
  2852. width:136px;
  2853. height:38px;
  2854. }
  2855. #u25326 {
  2856. border-width:0px;
  2857. position:absolute;
  2858. left:816px;
  2859. top:114px;
  2860. width:136px;
  2861. height:38px;
  2862. display:flex;
  2863. font-size:14px;
  2864. line-height:30px;
  2865. }
  2866. #u25326 .text {
  2867. position:absolute;
  2868. align-self:center;
  2869. padding:2px 0px 2px 0px;
  2870. box-sizing:border-box;
  2871. width:100%;
  2872. }
  2873. #u25326_text {
  2874. border-width:0px;
  2875. word-wrap:break-word;
  2876. text-transform:none;
  2877. visibility:hidden;
  2878. }
  2879. #u25327_img {
  2880. border-width:0px;
  2881. position:absolute;
  2882. left:0px;
  2883. top:0px;
  2884. width:136px;
  2885. height:38px;
  2886. }
  2887. #u25327 {
  2888. border-width:0px;
  2889. position:absolute;
  2890. left:952px;
  2891. top:114px;
  2892. width:136px;
  2893. height:38px;
  2894. display:flex;
  2895. font-size:14px;
  2896. line-height:30px;
  2897. }
  2898. #u25327 .text {
  2899. position:absolute;
  2900. align-self:center;
  2901. padding:2px 0px 2px 0px;
  2902. box-sizing:border-box;
  2903. width:100%;
  2904. }
  2905. #u25327_text {
  2906. border-width:0px;
  2907. word-wrap:break-word;
  2908. text-transform:none;
  2909. visibility:hidden;
  2910. }
  2911. #u25328_img {
  2912. border-width:0px;
  2913. position:absolute;
  2914. left:0px;
  2915. top:0px;
  2916. width:135px;
  2917. height:38px;
  2918. }
  2919. #u25328 {
  2920. border-width:0px;
  2921. position:absolute;
  2922. left:1088px;
  2923. top:114px;
  2924. width:135px;
  2925. height:38px;
  2926. display:flex;
  2927. font-size:14px;
  2928. line-height:30px;
  2929. }
  2930. #u25328 .text {
  2931. position:absolute;
  2932. align-self:center;
  2933. padding:2px 0px 2px 0px;
  2934. box-sizing:border-box;
  2935. width:100%;
  2936. }
  2937. #u25328_text {
  2938. border-width:0px;
  2939. word-wrap:break-word;
  2940. text-transform:none;
  2941. visibility:hidden;
  2942. }
  2943. #u25329_img {
  2944. border-width:0px;
  2945. position:absolute;
  2946. left:0px;
  2947. top:0px;
  2948. width:136px;
  2949. height:38px;
  2950. }
  2951. #u25329 {
  2952. border-width:0px;
  2953. position:absolute;
  2954. left:0px;
  2955. top:152px;
  2956. width:136px;
  2957. height:38px;
  2958. display:flex;
  2959. font-size:14px;
  2960. line-height:30px;
  2961. }
  2962. #u25329 .text {
  2963. position:absolute;
  2964. align-self:center;
  2965. padding:2px 0px 2px 0px;
  2966. box-sizing:border-box;
  2967. width:100%;
  2968. }
  2969. #u25329_text {
  2970. border-width:0px;
  2971. word-wrap:break-word;
  2972. text-transform:none;
  2973. visibility:hidden;
  2974. }
  2975. #u25330_img {
  2976. border-width:0px;
  2977. position:absolute;
  2978. left:0px;
  2979. top:0px;
  2980. width:136px;
  2981. height:38px;
  2982. }
  2983. #u25330 {
  2984. border-width:0px;
  2985. position:absolute;
  2986. left:136px;
  2987. top:152px;
  2988. width:136px;
  2989. height:38px;
  2990. display:flex;
  2991. font-size:14px;
  2992. line-height:30px;
  2993. }
  2994. #u25330 .text {
  2995. position:absolute;
  2996. align-self:center;
  2997. padding:2px 0px 2px 0px;
  2998. box-sizing:border-box;
  2999. width:100%;
  3000. }
  3001. #u25330_text {
  3002. border-width:0px;
  3003. word-wrap:break-word;
  3004. text-transform:none;
  3005. visibility:hidden;
  3006. }
  3007. #u25331_img {
  3008. border-width:0px;
  3009. position:absolute;
  3010. left:0px;
  3011. top:0px;
  3012. width:136px;
  3013. height:38px;
  3014. }
  3015. #u25331 {
  3016. border-width:0px;
  3017. position:absolute;
  3018. left:272px;
  3019. top:152px;
  3020. width:136px;
  3021. height:38px;
  3022. display:flex;
  3023. font-size:14px;
  3024. line-height:30px;
  3025. }
  3026. #u25331 .text {
  3027. position:absolute;
  3028. align-self:center;
  3029. padding:2px 0px 2px 0px;
  3030. box-sizing:border-box;
  3031. width:100%;
  3032. }
  3033. #u25331_text {
  3034. border-width:0px;
  3035. word-wrap:break-word;
  3036. text-transform:none;
  3037. visibility:hidden;
  3038. }
  3039. #u25332_img {
  3040. border-width:0px;
  3041. position:absolute;
  3042. left:0px;
  3043. top:0px;
  3044. width:136px;
  3045. height:38px;
  3046. }
  3047. #u25332 {
  3048. border-width:0px;
  3049. position:absolute;
  3050. left:408px;
  3051. top:152px;
  3052. width:136px;
  3053. height:38px;
  3054. display:flex;
  3055. font-size:14px;
  3056. line-height:30px;
  3057. }
  3058. #u25332 .text {
  3059. position:absolute;
  3060. align-self:center;
  3061. padding:2px 0px 2px 0px;
  3062. box-sizing:border-box;
  3063. width:100%;
  3064. }
  3065. #u25332_text {
  3066. border-width:0px;
  3067. word-wrap:break-word;
  3068. text-transform:none;
  3069. visibility:hidden;
  3070. }
  3071. #u25333_img {
  3072. border-width:0px;
  3073. position:absolute;
  3074. left:0px;
  3075. top:0px;
  3076. width:136px;
  3077. height:38px;
  3078. }
  3079. #u25333 {
  3080. border-width:0px;
  3081. position:absolute;
  3082. left:544px;
  3083. top:152px;
  3084. width:136px;
  3085. height:38px;
  3086. display:flex;
  3087. font-size:14px;
  3088. line-height:30px;
  3089. }
  3090. #u25333 .text {
  3091. position:absolute;
  3092. align-self:center;
  3093. padding:2px 0px 2px 0px;
  3094. box-sizing:border-box;
  3095. width:100%;
  3096. }
  3097. #u25333_text {
  3098. border-width:0px;
  3099. word-wrap:break-word;
  3100. text-transform:none;
  3101. visibility:hidden;
  3102. }
  3103. #u25334_img {
  3104. border-width:0px;
  3105. position:absolute;
  3106. left:0px;
  3107. top:0px;
  3108. width:136px;
  3109. height:38px;
  3110. }
  3111. #u25334 {
  3112. border-width:0px;
  3113. position:absolute;
  3114. left:680px;
  3115. top:152px;
  3116. width:136px;
  3117. height:38px;
  3118. display:flex;
  3119. font-size:14px;
  3120. line-height:30px;
  3121. }
  3122. #u25334 .text {
  3123. position:absolute;
  3124. align-self:center;
  3125. padding:2px 0px 2px 0px;
  3126. box-sizing:border-box;
  3127. width:100%;
  3128. }
  3129. #u25334_text {
  3130. border-width:0px;
  3131. word-wrap:break-word;
  3132. text-transform:none;
  3133. visibility:hidden;
  3134. }
  3135. #u25335_img {
  3136. border-width:0px;
  3137. position:absolute;
  3138. left:0px;
  3139. top:0px;
  3140. width:136px;
  3141. height:38px;
  3142. }
  3143. #u25335 {
  3144. border-width:0px;
  3145. position:absolute;
  3146. left:816px;
  3147. top:152px;
  3148. width:136px;
  3149. height:38px;
  3150. display:flex;
  3151. font-size:14px;
  3152. line-height:30px;
  3153. }
  3154. #u25335 .text {
  3155. position:absolute;
  3156. align-self:center;
  3157. padding:2px 0px 2px 0px;
  3158. box-sizing:border-box;
  3159. width:100%;
  3160. }
  3161. #u25335_text {
  3162. border-width:0px;
  3163. word-wrap:break-word;
  3164. text-transform:none;
  3165. visibility:hidden;
  3166. }
  3167. #u25336_img {
  3168. border-width:0px;
  3169. position:absolute;
  3170. left:0px;
  3171. top:0px;
  3172. width:136px;
  3173. height:38px;
  3174. }
  3175. #u25336 {
  3176. border-width:0px;
  3177. position:absolute;
  3178. left:952px;
  3179. top:152px;
  3180. width:136px;
  3181. height:38px;
  3182. display:flex;
  3183. font-size:14px;
  3184. line-height:30px;
  3185. }
  3186. #u25336 .text {
  3187. position:absolute;
  3188. align-self:center;
  3189. padding:2px 0px 2px 0px;
  3190. box-sizing:border-box;
  3191. width:100%;
  3192. }
  3193. #u25336_text {
  3194. border-width:0px;
  3195. word-wrap:break-word;
  3196. text-transform:none;
  3197. visibility:hidden;
  3198. }
  3199. #u25337_img {
  3200. border-width:0px;
  3201. position:absolute;
  3202. left:0px;
  3203. top:0px;
  3204. width:135px;
  3205. height:38px;
  3206. }
  3207. #u25337 {
  3208. border-width:0px;
  3209. position:absolute;
  3210. left:1088px;
  3211. top:152px;
  3212. width:135px;
  3213. height:38px;
  3214. display:flex;
  3215. font-size:14px;
  3216. line-height:30px;
  3217. }
  3218. #u25337 .text {
  3219. position:absolute;
  3220. align-self:center;
  3221. padding:2px 0px 2px 0px;
  3222. box-sizing:border-box;
  3223. width:100%;
  3224. }
  3225. #u25337_text {
  3226. border-width:0px;
  3227. word-wrap:break-word;
  3228. text-transform:none;
  3229. visibility:hidden;
  3230. }
  3231. #u25338 {
  3232. border-width:0px;
  3233. position:absolute;
  3234. left:0px;
  3235. top:0px;
  3236. width:0px;
  3237. height:0px;
  3238. }
  3239. #u25339_div {
  3240. border-width:0px;
  3241. position:absolute;
  3242. left:0px;
  3243. top:0px;
  3244. width:61px;
  3245. height:32px;
  3246. background:inherit;
  3247. background-color:rgba(24, 144, 255, 1);
  3248. border:none;
  3249. border-radius:4px;
  3250. -moz-box-shadow:none;
  3251. -webkit-box-shadow:none;
  3252. box-shadow:none;
  3253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3254. font-weight:400;
  3255. font-style:normal;
  3256. font-size:14px;
  3257. color:#FFFFFF;
  3258. }
  3259. #u25339 {
  3260. border-width:0px;
  3261. position:absolute;
  3262. left:1400px;
  3263. top:251px;
  3264. width:61px;
  3265. height:32px;
  3266. display:flex;
  3267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3268. font-weight:400;
  3269. font-style:normal;
  3270. font-size:14px;
  3271. color:#FFFFFF;
  3272. }
  3273. #u25339 .text {
  3274. position:absolute;
  3275. align-self:center;
  3276. padding:2px 16px 2px 16px;
  3277. box-sizing:border-box;
  3278. width:100%;
  3279. }
  3280. #u25339_text {
  3281. border-width:0px;
  3282. white-space:nowrap;
  3283. text-transform:none;
  3284. }
  3285. #u25340_div {
  3286. border-width:0px;
  3287. position:absolute;
  3288. left:0px;
  3289. top:0px;
  3290. width:61px;
  3291. height:32px;
  3292. background:inherit;
  3293. background-color:rgba(255, 255, 255, 1);
  3294. box-sizing:border-box;
  3295. border-width:1px;
  3296. border-style:solid;
  3297. border-color:rgba(217, 217, 217, 1);
  3298. border-radius:4px;
  3299. -moz-box-shadow:none;
  3300. -webkit-box-shadow:none;
  3301. box-shadow:none;
  3302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3303. font-weight:400;
  3304. font-style:normal;
  3305. font-size:14px;
  3306. color:rgba(0, 0, 0, 0.647058823529412);
  3307. line-height:21px;
  3308. }
  3309. #u25340 {
  3310. border-width:0px;
  3311. position:absolute;
  3312. left:1471px;
  3313. top:251px;
  3314. width:61px;
  3315. height:32px;
  3316. display:flex;
  3317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3318. font-weight:400;
  3319. font-style:normal;
  3320. font-size:14px;
  3321. color:rgba(0, 0, 0, 0.647058823529412);
  3322. line-height:21px;
  3323. }
  3324. #u25340 .text {
  3325. position:absolute;
  3326. align-self:center;
  3327. padding:2px 16px 2px 16px;
  3328. box-sizing:border-box;
  3329. width:100%;
  3330. }
  3331. #u25340_text {
  3332. border-width:0px;
  3333. white-space:nowrap;
  3334. text-transform:none;
  3335. }
  3336. #u25341 {
  3337. border-width:0px;
  3338. position:absolute;
  3339. left:0px;
  3340. top:0px;
  3341. width:0px;
  3342. height:0px;
  3343. }
  3344. #u25342_div {
  3345. border-width:0px;
  3346. position:absolute;
  3347. left:0px;
  3348. top:0px;
  3349. width:140px;
  3350. height:30px;
  3351. background:inherit;
  3352. background-color:rgba(255, 255, 255, 1);
  3353. box-sizing:border-box;
  3354. border-width:1px;
  3355. border-style:solid;
  3356. border-color:rgba(215, 215, 215, 1);
  3357. border-radius:4px;
  3358. -moz-box-shadow:none;
  3359. -webkit-box-shadow:none;
  3360. box-shadow:none;
  3361. font-size:14px;
  3362. }
  3363. #u25342 {
  3364. border-width:0px;
  3365. position:absolute;
  3366. left:350px;
  3367. top:253px;
  3368. width:140px;
  3369. height:30px;
  3370. display:flex;
  3371. font-size:14px;
  3372. }
  3373. #u25342 .text {
  3374. position:absolute;
  3375. align-self:center;
  3376. padding:2px 2px 2px 2px;
  3377. box-sizing:border-box;
  3378. width:100%;
  3379. }
  3380. #u25342_text {
  3381. border-width:0px;
  3382. word-wrap:break-word;
  3383. text-transform:none;
  3384. visibility:hidden;
  3385. }
  3386. #u25343_input {
  3387. position:absolute;
  3388. left:0px;
  3389. top:0px;
  3390. width:134px;
  3391. height:23px;
  3392. padding:2px 2px 2px 2px;
  3393. font-family:'ArialMT', 'Arial', sans-serif;
  3394. font-weight:400;
  3395. font-style:normal;
  3396. font-size:14px;
  3397. letter-spacing:normal;
  3398. color:#AAAAAA;
  3399. vertical-align:none;
  3400. text-align:left;
  3401. text-transform:none;
  3402. background-color:transparent;
  3403. border-color:transparent;
  3404. }
  3405. #u25343_input.disabled {
  3406. position:absolute;
  3407. left:0px;
  3408. top:0px;
  3409. width:134px;
  3410. height:23px;
  3411. padding:2px 2px 2px 2px;
  3412. font-family:'ArialMT', 'Arial', sans-serif;
  3413. font-weight:400;
  3414. font-style:normal;
  3415. font-size:14px;
  3416. letter-spacing:normal;
  3417. color:#AAAAAA;
  3418. vertical-align:none;
  3419. text-align:left;
  3420. text-transform:none;
  3421. background-color:transparent;
  3422. border-color:transparent;
  3423. }
  3424. #u25343_div {
  3425. border-width:0px;
  3426. position:absolute;
  3427. left:0px;
  3428. top:0px;
  3429. width:134px;
  3430. height:23px;
  3431. background:inherit;
  3432. background-color:rgba(255, 255, 255, 1);
  3433. border:none;
  3434. border-radius:0px;
  3435. -moz-box-shadow:none;
  3436. -webkit-box-shadow:none;
  3437. box-shadow:none;
  3438. font-size:14px;
  3439. color:#AAAAAA;
  3440. }
  3441. #u25343 {
  3442. border-width:0px;
  3443. position:absolute;
  3444. left:354px;
  3445. top:255px;
  3446. width:134px;
  3447. height:23px;
  3448. display:flex;
  3449. font-size:14px;
  3450. color:#AAAAAA;
  3451. }
  3452. #u25343 .text {
  3453. position:absolute;
  3454. align-self:flex-start;
  3455. padding:2px 2px 2px 2px;
  3456. box-sizing:border-box;
  3457. width:100%;
  3458. }
  3459. #u25343_div.disabled {
  3460. border-width:0px;
  3461. position:absolute;
  3462. left:0px;
  3463. top:0px;
  3464. width:134px;
  3465. height:23px;
  3466. background:inherit;
  3467. background-color:rgba(240, 240, 240, 1);
  3468. border:none;
  3469. border-radius:0px;
  3470. -moz-box-shadow:none;
  3471. -webkit-box-shadow:none;
  3472. box-shadow:none;
  3473. font-size:14px;
  3474. color:#AAAAAA;
  3475. }
  3476. #u25343.disabled {
  3477. }
  3478. .u25343_input_option {
  3479. font-size:14px;
  3480. }
  3481. #u25344 {
  3482. border-width:0px;
  3483. position:absolute;
  3484. left:0px;
  3485. top:0px;
  3486. width:0px;
  3487. height:0px;
  3488. }
  3489. #u25345_div {
  3490. border-width:0px;
  3491. position:absolute;
  3492. left:0px;
  3493. top:0px;
  3494. width:140px;
  3495. height:30px;
  3496. background:inherit;
  3497. background-color:rgba(255, 255, 255, 1);
  3498. box-sizing:border-box;
  3499. border-width:1px;
  3500. border-style:solid;
  3501. border-color:rgba(201, 201, 201, 1);
  3502. border-radius:4px;
  3503. -moz-box-shadow:none;
  3504. -webkit-box-shadow:none;
  3505. box-shadow:none;
  3506. font-family:'Microsoft YaHei', sans-serif;
  3507. font-weight:400;
  3508. font-style:normal;
  3509. font-size:14px;
  3510. color:#CCCCCC;
  3511. text-align:left;
  3512. }
  3513. #u25345 {
  3514. border-width:0px;
  3515. position:absolute;
  3516. left:800px;
  3517. top:252px;
  3518. width:140px;
  3519. height:30px;
  3520. display:flex;
  3521. font-family:'Microsoft YaHei', sans-serif;
  3522. font-weight:400;
  3523. font-style:normal;
  3524. font-size:14px;
  3525. color:#CCCCCC;
  3526. text-align:left;
  3527. }
  3528. #u25345 .text {
  3529. position:absolute;
  3530. align-self:center;
  3531. padding:2px 8px 2px 8px;
  3532. box-sizing:border-box;
  3533. width:100%;
  3534. }
  3535. #u25345_text {
  3536. border-width:0px;
  3537. word-wrap:break-word;
  3538. text-transform:none;
  3539. visibility:hidden;
  3540. }
  3541. #u25346_input {
  3542. position:absolute;
  3543. left:0px;
  3544. top:0px;
  3545. width:130px;
  3546. height:25px;
  3547. padding:2px 2px 2px 2px;
  3548. font-family:'Microsoft YaHei', sans-serif;
  3549. font-weight:400;
  3550. font-style:normal;
  3551. font-size:13px;
  3552. letter-spacing:normal;
  3553. color:#000000;
  3554. vertical-align:none;
  3555. text-align:left;
  3556. text-transform:none;
  3557. background-color:transparent;
  3558. border-color:transparent;
  3559. }
  3560. #u25346_input.disabled {
  3561. position:absolute;
  3562. left:0px;
  3563. top:0px;
  3564. width:130px;
  3565. height:25px;
  3566. padding:2px 2px 2px 2px;
  3567. font-family:'Microsoft YaHei', sans-serif;
  3568. font-weight:400;
  3569. font-style:normal;
  3570. font-size:13px;
  3571. letter-spacing:normal;
  3572. color:#000000;
  3573. vertical-align:none;
  3574. text-align:left;
  3575. text-transform:none;
  3576. background-color:transparent;
  3577. border-color:transparent;
  3578. }
  3579. #u25346_div {
  3580. border-width:0px;
  3581. position:absolute;
  3582. left:0px;
  3583. top:0px;
  3584. width:130px;
  3585. height:25px;
  3586. background:inherit;
  3587. background-color:rgba(255, 255, 255, 1);
  3588. border:none;
  3589. border-radius:0px;
  3590. -moz-box-shadow:none;
  3591. -webkit-box-shadow:none;
  3592. box-shadow:none;
  3593. font-family:'Microsoft YaHei', sans-serif;
  3594. font-weight:400;
  3595. font-style:normal;
  3596. }
  3597. #u25346 {
  3598. border-width:0px;
  3599. position:absolute;
  3600. left:805px;
  3601. top:253px;
  3602. width:130px;
  3603. height:25px;
  3604. display:flex;
  3605. font-family:'Microsoft YaHei', sans-serif;
  3606. font-weight:400;
  3607. font-style:normal;
  3608. }
  3609. #u25346 .text {
  3610. position:absolute;
  3611. align-self:center;
  3612. padding:2px 2px 2px 2px;
  3613. box-sizing:border-box;
  3614. width:100%;
  3615. }
  3616. #u25346_div.disabled {
  3617. border-width:0px;
  3618. position:absolute;
  3619. left:0px;
  3620. top:0px;
  3621. width:130px;
  3622. height:25px;
  3623. background:inherit;
  3624. background-color:rgba(240, 240, 240, 1);
  3625. border:none;
  3626. border-radius:0px;
  3627. -moz-box-shadow:none;
  3628. -webkit-box-shadow:none;
  3629. box-shadow:none;
  3630. font-family:'Microsoft YaHei', sans-serif;
  3631. font-weight:400;
  3632. font-style:normal;
  3633. }
  3634. #u25346.disabled {
  3635. }
  3636. #u25347 {
  3637. border-width:0px;
  3638. position:absolute;
  3639. left:0px;
  3640. top:0px;
  3641. width:0px;
  3642. height:0px;
  3643. }
  3644. #u25348_div {
  3645. border-width:0px;
  3646. position:absolute;
  3647. left:0px;
  3648. top:0px;
  3649. width:140px;
  3650. height:30px;
  3651. background:inherit;
  3652. background-color:rgba(255, 255, 255, 1);
  3653. box-sizing:border-box;
  3654. border-width:1px;
  3655. border-style:solid;
  3656. border-color:rgba(201, 201, 201, 1);
  3657. border-radius:4px;
  3658. -moz-box-shadow:none;
  3659. -webkit-box-shadow:none;
  3660. box-shadow:none;
  3661. font-family:'Microsoft YaHei', sans-serif;
  3662. font-weight:400;
  3663. font-style:normal;
  3664. font-size:14px;
  3665. color:#CCCCCC;
  3666. text-align:left;
  3667. }
  3668. #u25348 {
  3669. border-width:0px;
  3670. position:absolute;
  3671. left:950px;
  3672. top:252px;
  3673. width:140px;
  3674. height:30px;
  3675. display:flex;
  3676. font-family:'Microsoft YaHei', sans-serif;
  3677. font-weight:400;
  3678. font-style:normal;
  3679. font-size:14px;
  3680. color:#CCCCCC;
  3681. text-align:left;
  3682. }
  3683. #u25348 .text {
  3684. position:absolute;
  3685. align-self:center;
  3686. padding:2px 8px 2px 8px;
  3687. box-sizing:border-box;
  3688. width:100%;
  3689. }
  3690. #u25348_text {
  3691. border-width:0px;
  3692. word-wrap:break-word;
  3693. text-transform:none;
  3694. visibility:hidden;
  3695. }
  3696. #u25349_input {
  3697. position:absolute;
  3698. left:0px;
  3699. top:0px;
  3700. width:130px;
  3701. height:25px;
  3702. padding:2px 2px 2px 2px;
  3703. font-family:'Microsoft YaHei', sans-serif;
  3704. font-weight:400;
  3705. font-style:normal;
  3706. font-size:13px;
  3707. letter-spacing:normal;
  3708. color:#000000;
  3709. vertical-align:none;
  3710. text-align:left;
  3711. text-transform:none;
  3712. background-color:transparent;
  3713. border-color:transparent;
  3714. }
  3715. #u25349_input.disabled {
  3716. position:absolute;
  3717. left:0px;
  3718. top:0px;
  3719. width:130px;
  3720. height:25px;
  3721. padding:2px 2px 2px 2px;
  3722. font-family:'Microsoft YaHei', sans-serif;
  3723. font-weight:400;
  3724. font-style:normal;
  3725. font-size:13px;
  3726. letter-spacing:normal;
  3727. color:#000000;
  3728. vertical-align:none;
  3729. text-align:left;
  3730. text-transform:none;
  3731. background-color:transparent;
  3732. border-color:transparent;
  3733. }
  3734. #u25349_div {
  3735. border-width:0px;
  3736. position:absolute;
  3737. left:0px;
  3738. top:0px;
  3739. width:130px;
  3740. height:25px;
  3741. background:inherit;
  3742. background-color:rgba(255, 255, 255, 1);
  3743. border:none;
  3744. border-radius:0px;
  3745. -moz-box-shadow:none;
  3746. -webkit-box-shadow:none;
  3747. box-shadow:none;
  3748. font-family:'Microsoft YaHei', sans-serif;
  3749. font-weight:400;
  3750. font-style:normal;
  3751. }
  3752. #u25349 {
  3753. border-width:0px;
  3754. position:absolute;
  3755. left:955px;
  3756. top:253px;
  3757. width:130px;
  3758. height:25px;
  3759. display:flex;
  3760. font-family:'Microsoft YaHei', sans-serif;
  3761. font-weight:400;
  3762. font-style:normal;
  3763. }
  3764. #u25349 .text {
  3765. position:absolute;
  3766. align-self:center;
  3767. padding:2px 2px 2px 2px;
  3768. box-sizing:border-box;
  3769. width:100%;
  3770. }
  3771. #u25349_div.disabled {
  3772. border-width:0px;
  3773. position:absolute;
  3774. left:0px;
  3775. top:0px;
  3776. width:130px;
  3777. height:25px;
  3778. background:inherit;
  3779. background-color:rgba(240, 240, 240, 1);
  3780. border:none;
  3781. border-radius:0px;
  3782. -moz-box-shadow:none;
  3783. -webkit-box-shadow:none;
  3784. box-shadow:none;
  3785. font-family:'Microsoft YaHei', sans-serif;
  3786. font-weight:400;
  3787. font-style:normal;
  3788. }
  3789. #u25349.disabled {
  3790. }
  3791. #u25350 {
  3792. border-width:0px;
  3793. position:absolute;
  3794. left:0px;
  3795. top:0px;
  3796. width:0px;
  3797. height:0px;
  3798. }
  3799. #u25351_div {
  3800. border-width:0px;
  3801. position:absolute;
  3802. left:0px;
  3803. top:0px;
  3804. width:140px;
  3805. height:30px;
  3806. background:inherit;
  3807. background-color:rgba(255, 255, 255, 1);
  3808. box-sizing:border-box;
  3809. border-width:1px;
  3810. border-style:solid;
  3811. border-color:rgba(201, 201, 201, 1);
  3812. border-radius:4px;
  3813. -moz-box-shadow:none;
  3814. -webkit-box-shadow:none;
  3815. box-shadow:none;
  3816. font-family:'Microsoft YaHei', sans-serif;
  3817. font-weight:400;
  3818. font-style:normal;
  3819. font-size:14px;
  3820. color:#CCCCCC;
  3821. text-align:left;
  3822. }
  3823. #u25351 {
  3824. border-width:0px;
  3825. position:absolute;
  3826. left:500px;
  3827. top:252px;
  3828. width:140px;
  3829. height:30px;
  3830. display:flex;
  3831. font-family:'Microsoft YaHei', sans-serif;
  3832. font-weight:400;
  3833. font-style:normal;
  3834. font-size:14px;
  3835. color:#CCCCCC;
  3836. text-align:left;
  3837. }
  3838. #u25351 .text {
  3839. position:absolute;
  3840. align-self:center;
  3841. padding:2px 8px 2px 8px;
  3842. box-sizing:border-box;
  3843. width:100%;
  3844. }
  3845. #u25351_text {
  3846. border-width:0px;
  3847. word-wrap:break-word;
  3848. text-transform:none;
  3849. visibility:hidden;
  3850. }
  3851. #u25352_input {
  3852. position:absolute;
  3853. left:0px;
  3854. top:0px;
  3855. width:130px;
  3856. height:25px;
  3857. padding:2px 2px 2px 2px;
  3858. font-family:'Microsoft YaHei', sans-serif;
  3859. font-weight:400;
  3860. font-style:normal;
  3861. font-size:13px;
  3862. letter-spacing:normal;
  3863. color:#000000;
  3864. vertical-align:none;
  3865. text-align:left;
  3866. text-transform:none;
  3867. background-color:transparent;
  3868. border-color:transparent;
  3869. }
  3870. #u25352_input.disabled {
  3871. position:absolute;
  3872. left:0px;
  3873. top:0px;
  3874. width:130px;
  3875. height:25px;
  3876. padding:2px 2px 2px 2px;
  3877. font-family:'Microsoft YaHei', sans-serif;
  3878. font-weight:400;
  3879. font-style:normal;
  3880. font-size:13px;
  3881. letter-spacing:normal;
  3882. color:#000000;
  3883. vertical-align:none;
  3884. text-align:left;
  3885. text-transform:none;
  3886. background-color:transparent;
  3887. border-color:transparent;
  3888. }
  3889. #u25352_div {
  3890. border-width:0px;
  3891. position:absolute;
  3892. left:0px;
  3893. top:0px;
  3894. width:130px;
  3895. height:25px;
  3896. background:inherit;
  3897. background-color:rgba(255, 255, 255, 1);
  3898. border:none;
  3899. border-radius:0px;
  3900. -moz-box-shadow:none;
  3901. -webkit-box-shadow:none;
  3902. box-shadow:none;
  3903. font-family:'Microsoft YaHei', sans-serif;
  3904. font-weight:400;
  3905. font-style:normal;
  3906. }
  3907. #u25352 {
  3908. border-width:0px;
  3909. position:absolute;
  3910. left:505px;
  3911. top:253px;
  3912. width:130px;
  3913. height:25px;
  3914. display:flex;
  3915. font-family:'Microsoft YaHei', sans-serif;
  3916. font-weight:400;
  3917. font-style:normal;
  3918. }
  3919. #u25352 .text {
  3920. position:absolute;
  3921. align-self:center;
  3922. padding:2px 2px 2px 2px;
  3923. box-sizing:border-box;
  3924. width:100%;
  3925. }
  3926. #u25352_div.disabled {
  3927. border-width:0px;
  3928. position:absolute;
  3929. left:0px;
  3930. top:0px;
  3931. width:130px;
  3932. height:25px;
  3933. background:inherit;
  3934. background-color:rgba(240, 240, 240, 1);
  3935. border:none;
  3936. border-radius:0px;
  3937. -moz-box-shadow:none;
  3938. -webkit-box-shadow:none;
  3939. box-shadow:none;
  3940. font-family:'Microsoft YaHei', sans-serif;
  3941. font-weight:400;
  3942. font-style:normal;
  3943. }
  3944. #u25352.disabled {
  3945. }
  3946. #u25353_div {
  3947. border-width:0px;
  3948. position:absolute;
  3949. left:0px;
  3950. top:0px;
  3951. width:600px;
  3952. height:100px;
  3953. background:inherit;
  3954. background-color:rgba(255, 255, 255, 1);
  3955. box-sizing:border-box;
  3956. border-width:1px;
  3957. border-style:solid;
  3958. border-color:rgba(217, 217, 217, 1);
  3959. border-radius:4px;
  3960. -moz-box-shadow:none;
  3961. -webkit-box-shadow:none;
  3962. box-shadow:none;
  3963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3964. font-weight:400;
  3965. font-style:normal;
  3966. font-size:14px;
  3967. color:rgba(0, 0, 0, 0.647058823529412);
  3968. line-height:21px;
  3969. }
  3970. #u25353 {
  3971. border-width:0px;
  3972. position:absolute;
  3973. left:960px;
  3974. top:100px;
  3975. width:600px;
  3976. height:100px;
  3977. display:flex;
  3978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3979. font-weight:400;
  3980. font-style:normal;
  3981. font-size:14px;
  3982. color:rgba(0, 0, 0, 0.647058823529412);
  3983. line-height:21px;
  3984. }
  3985. #u25353 .text {
  3986. position:absolute;
  3987. align-self:center;
  3988. padding:2px 16px 2px 16px;
  3989. box-sizing:border-box;
  3990. width:100%;
  3991. }
  3992. #u25353_text {
  3993. border-width:0px;
  3994. word-wrap:break-word;
  3995. text-transform:none;
  3996. visibility:hidden;
  3997. }
  3998. #u25354_div {
  3999. border-width:0px;
  4000. position:absolute;
  4001. left:0px;
  4002. top:0px;
  4003. width:99px;
  4004. height:30px;
  4005. background:inherit;
  4006. background-color:rgba(224, 231, 247, 0);
  4007. border:none;
  4008. border-radius:0px;
  4009. -moz-box-shadow:none;
  4010. -webkit-box-shadow:none;
  4011. box-shadow:none;
  4012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4013. font-weight:400;
  4014. font-style:normal;
  4015. line-height:30px;
  4016. }
  4017. #u25354 {
  4018. border-width:0px;
  4019. position:absolute;
  4020. left:1000px;
  4021. top:135px;
  4022. width:99px;
  4023. height:30px;
  4024. display:flex;
  4025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4026. font-weight:400;
  4027. font-style:normal;
  4028. line-height:30px;
  4029. }
  4030. #u25354 .text {
  4031. position:absolute;
  4032. align-self:center;
  4033. padding:0px 0px 0px 0px;
  4034. box-sizing:border-box;
  4035. width:100%;
  4036. }
  4037. #u25354_text {
  4038. border-width:0px;
  4039. white-space:nowrap;
  4040. text-transform:none;
  4041. }
  4042. #u25355_div {
  4043. border-width:0px;
  4044. position:absolute;
  4045. left:0px;
  4046. top:0px;
  4047. width:118px;
  4048. height:30px;
  4049. background:inherit;
  4050. background-color:rgba(224, 231, 247, 0);
  4051. border:none;
  4052. border-radius:0px;
  4053. -moz-box-shadow:none;
  4054. -webkit-box-shadow:none;
  4055. box-shadow:none;
  4056. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4057. font-style:normal;
  4058. text-align:center;
  4059. line-height:30px;
  4060. }
  4061. #u25355 {
  4062. border-width:0px;
  4063. position:absolute;
  4064. left:1144px;
  4065. top:135px;
  4066. width:118px;
  4067. height:30px;
  4068. display:flex;
  4069. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4070. font-style:normal;
  4071. text-align:center;
  4072. line-height:30px;
  4073. }
  4074. #u25355 .text {
  4075. position:absolute;
  4076. align-self:center;
  4077. padding:0px 0px 0px 0px;
  4078. box-sizing:border-box;
  4079. width:100%;
  4080. }
  4081. #u25355_text {
  4082. border-width:0px;
  4083. white-space:nowrap;
  4084. text-transform:none;
  4085. }
  4086. #u25356 {
  4087. border-width:0px;
  4088. position:absolute;
  4089. left:0px;
  4090. top:0px;
  4091. width:0px;
  4092. height:0px;
  4093. }
  4094. #u25357_div {
  4095. border-width:0px;
  4096. position:absolute;
  4097. left:0px;
  4098. top:0px;
  4099. width:140px;
  4100. height:30px;
  4101. background:inherit;
  4102. background-color:rgba(255, 255, 255, 1);
  4103. box-sizing:border-box;
  4104. border-width:1px;
  4105. border-style:solid;
  4106. border-color:rgba(215, 215, 215, 1);
  4107. border-radius:4px;
  4108. -moz-box-shadow:none;
  4109. -webkit-box-shadow:none;
  4110. box-shadow:none;
  4111. font-size:14px;
  4112. }
  4113. #u25357 {
  4114. border-width:0px;
  4115. position:absolute;
  4116. left:650px;
  4117. top:252px;
  4118. width:140px;
  4119. height:30px;
  4120. display:flex;
  4121. font-size:14px;
  4122. }
  4123. #u25357 .text {
  4124. position:absolute;
  4125. align-self:center;
  4126. padding:2px 2px 2px 2px;
  4127. box-sizing:border-box;
  4128. width:100%;
  4129. }
  4130. #u25357_text {
  4131. border-width:0px;
  4132. word-wrap:break-word;
  4133. text-transform:none;
  4134. visibility:hidden;
  4135. }
  4136. #u25358_input {
  4137. position:absolute;
  4138. left:0px;
  4139. top:0px;
  4140. width:134px;
  4141. height:23px;
  4142. padding:2px 2px 2px 2px;
  4143. font-family:'ArialMT', 'Arial', sans-serif;
  4144. font-weight:400;
  4145. font-style:normal;
  4146. font-size:14px;
  4147. letter-spacing:normal;
  4148. color:#AAAAAA;
  4149. vertical-align:none;
  4150. text-align:left;
  4151. text-transform:none;
  4152. background-color:transparent;
  4153. border-color:transparent;
  4154. }
  4155. #u25358_input.disabled {
  4156. position:absolute;
  4157. left:0px;
  4158. top:0px;
  4159. width:134px;
  4160. height:23px;
  4161. padding:2px 2px 2px 2px;
  4162. font-family:'ArialMT', 'Arial', sans-serif;
  4163. font-weight:400;
  4164. font-style:normal;
  4165. font-size:14px;
  4166. letter-spacing:normal;
  4167. color:#AAAAAA;
  4168. vertical-align:none;
  4169. text-align:left;
  4170. text-transform:none;
  4171. background-color:transparent;
  4172. border-color:transparent;
  4173. }
  4174. #u25358_div {
  4175. border-width:0px;
  4176. position:absolute;
  4177. left:0px;
  4178. top:0px;
  4179. width:134px;
  4180. height:23px;
  4181. background:inherit;
  4182. background-color:rgba(255, 255, 255, 1);
  4183. border:none;
  4184. border-radius:0px;
  4185. -moz-box-shadow:none;
  4186. -webkit-box-shadow:none;
  4187. box-shadow:none;
  4188. font-size:14px;
  4189. color:#AAAAAA;
  4190. }
  4191. #u25358 {
  4192. border-width:0px;
  4193. position:absolute;
  4194. left:654px;
  4195. top:254px;
  4196. width:134px;
  4197. height:23px;
  4198. display:flex;
  4199. font-size:14px;
  4200. color:#AAAAAA;
  4201. }
  4202. #u25358 .text {
  4203. position:absolute;
  4204. align-self:flex-start;
  4205. padding:2px 2px 2px 2px;
  4206. box-sizing:border-box;
  4207. width:100%;
  4208. }
  4209. #u25358_div.disabled {
  4210. border-width:0px;
  4211. position:absolute;
  4212. left:0px;
  4213. top:0px;
  4214. width:134px;
  4215. height:23px;
  4216. background:inherit;
  4217. background-color:rgba(240, 240, 240, 1);
  4218. border:none;
  4219. border-radius:0px;
  4220. -moz-box-shadow:none;
  4221. -webkit-box-shadow:none;
  4222. box-shadow:none;
  4223. font-size:14px;
  4224. color:#AAAAAA;
  4225. }
  4226. #u25358.disabled {
  4227. }
  4228. .u25358_input_option {
  4229. font-size:14px;
  4230. }
  4231. #u25359 {
  4232. border-width:0px;
  4233. position:absolute;
  4234. left:0px;
  4235. top:0px;
  4236. width:0px;
  4237. height:0px;
  4238. }
  4239. #u25360_div {
  4240. border-width:0px;
  4241. position:absolute;
  4242. left:0px;
  4243. top:0px;
  4244. width:140px;
  4245. height:30px;
  4246. background:inherit;
  4247. background-color:rgba(255, 255, 255, 1);
  4248. box-sizing:border-box;
  4249. border-width:1px;
  4250. border-style:solid;
  4251. border-color:rgba(215, 215, 215, 1);
  4252. border-radius:4px;
  4253. -moz-box-shadow:none;
  4254. -webkit-box-shadow:none;
  4255. box-shadow:none;
  4256. font-size:14px;
  4257. }
  4258. #u25360 {
  4259. border-width:0px;
  4260. position:absolute;
  4261. left:1250px;
  4262. top:252px;
  4263. width:140px;
  4264. height:30px;
  4265. display:flex;
  4266. font-size:14px;
  4267. }
  4268. #u25360 .text {
  4269. position:absolute;
  4270. align-self:center;
  4271. padding:2px 2px 2px 2px;
  4272. box-sizing:border-box;
  4273. width:100%;
  4274. }
  4275. #u25360_text {
  4276. border-width:0px;
  4277. word-wrap:break-word;
  4278. text-transform:none;
  4279. visibility:hidden;
  4280. }
  4281. #u25361_input {
  4282. position:absolute;
  4283. left:0px;
  4284. top:0px;
  4285. width:134px;
  4286. height:23px;
  4287. padding:2px 2px 2px 2px;
  4288. font-family:'ArialMT', 'Arial', sans-serif;
  4289. font-weight:400;
  4290. font-style:normal;
  4291. font-size:14px;
  4292. letter-spacing:normal;
  4293. color:#AAAAAA;
  4294. vertical-align:none;
  4295. text-align:left;
  4296. text-transform:none;
  4297. background-color:transparent;
  4298. border-color:transparent;
  4299. }
  4300. #u25361_input.disabled {
  4301. position:absolute;
  4302. left:0px;
  4303. top:0px;
  4304. width:134px;
  4305. height:23px;
  4306. padding:2px 2px 2px 2px;
  4307. font-family:'ArialMT', 'Arial', sans-serif;
  4308. font-weight:400;
  4309. font-style:normal;
  4310. font-size:14px;
  4311. letter-spacing:normal;
  4312. color:#AAAAAA;
  4313. vertical-align:none;
  4314. text-align:left;
  4315. text-transform:none;
  4316. background-color:transparent;
  4317. border-color:transparent;
  4318. }
  4319. #u25361_div {
  4320. border-width:0px;
  4321. position:absolute;
  4322. left:0px;
  4323. top:0px;
  4324. width:134px;
  4325. height:23px;
  4326. background:inherit;
  4327. background-color:rgba(255, 255, 255, 1);
  4328. border:none;
  4329. border-radius:0px;
  4330. -moz-box-shadow:none;
  4331. -webkit-box-shadow:none;
  4332. box-shadow:none;
  4333. font-size:14px;
  4334. color:#AAAAAA;
  4335. }
  4336. #u25361 {
  4337. border-width:0px;
  4338. position:absolute;
  4339. left:1254px;
  4340. top:254px;
  4341. width:134px;
  4342. height:23px;
  4343. display:flex;
  4344. font-size:14px;
  4345. color:#AAAAAA;
  4346. }
  4347. #u25361 .text {
  4348. position:absolute;
  4349. align-self:flex-start;
  4350. padding:2px 2px 2px 2px;
  4351. box-sizing:border-box;
  4352. width:100%;
  4353. }
  4354. #u25361_div.disabled {
  4355. border-width:0px;
  4356. position:absolute;
  4357. left:0px;
  4358. top:0px;
  4359. width:134px;
  4360. height:23px;
  4361. background:inherit;
  4362. background-color:rgba(240, 240, 240, 1);
  4363. border:none;
  4364. border-radius:0px;
  4365. -moz-box-shadow:none;
  4366. -webkit-box-shadow:none;
  4367. box-shadow:none;
  4368. font-size:14px;
  4369. color:#AAAAAA;
  4370. }
  4371. #u25361.disabled {
  4372. }
  4373. .u25361_input_option {
  4374. font-size:14px;
  4375. }
  4376. #u25362 {
  4377. border-width:0px;
  4378. position:absolute;
  4379. left:0px;
  4380. top:0px;
  4381. width:0px;
  4382. height:0px;
  4383. }
  4384. #u25363_div {
  4385. border-width:0px;
  4386. position:absolute;
  4387. left:0px;
  4388. top:0px;
  4389. width:140px;
  4390. height:30px;
  4391. background:inherit;
  4392. background-color:rgba(255, 255, 255, 1);
  4393. box-sizing:border-box;
  4394. border-width:1px;
  4395. border-style:solid;
  4396. border-color:rgba(201, 201, 201, 1);
  4397. border-radius:4px;
  4398. -moz-box-shadow:none;
  4399. -webkit-box-shadow:none;
  4400. box-shadow:none;
  4401. font-family:'Microsoft YaHei', sans-serif;
  4402. font-weight:400;
  4403. font-style:normal;
  4404. font-size:14px;
  4405. color:#CCCCCC;
  4406. text-align:left;
  4407. }
  4408. #u25363 {
  4409. border-width:0px;
  4410. position:absolute;
  4411. left:1100px;
  4412. top:252px;
  4413. width:140px;
  4414. height:30px;
  4415. display:flex;
  4416. font-family:'Microsoft YaHei', sans-serif;
  4417. font-weight:400;
  4418. font-style:normal;
  4419. font-size:14px;
  4420. color:#CCCCCC;
  4421. text-align:left;
  4422. }
  4423. #u25363 .text {
  4424. position:absolute;
  4425. align-self:center;
  4426. padding:2px 8px 2px 8px;
  4427. box-sizing:border-box;
  4428. width:100%;
  4429. }
  4430. #u25363_text {
  4431. border-width:0px;
  4432. word-wrap:break-word;
  4433. text-transform:none;
  4434. visibility:hidden;
  4435. }
  4436. #u25364_input {
  4437. position:absolute;
  4438. left:0px;
  4439. top:0px;
  4440. width:130px;
  4441. height:25px;
  4442. padding:2px 2px 2px 2px;
  4443. font-family:'Microsoft YaHei', sans-serif;
  4444. font-weight:400;
  4445. font-style:normal;
  4446. font-size:13px;
  4447. letter-spacing:normal;
  4448. color:#000000;
  4449. vertical-align:none;
  4450. text-align:left;
  4451. text-transform:none;
  4452. background-color:transparent;
  4453. border-color:transparent;
  4454. }
  4455. #u25364_input.disabled {
  4456. position:absolute;
  4457. left:0px;
  4458. top:0px;
  4459. width:130px;
  4460. height:25px;
  4461. padding:2px 2px 2px 2px;
  4462. font-family:'Microsoft YaHei', sans-serif;
  4463. font-weight:400;
  4464. font-style:normal;
  4465. font-size:13px;
  4466. letter-spacing:normal;
  4467. color:#000000;
  4468. vertical-align:none;
  4469. text-align:left;
  4470. text-transform:none;
  4471. background-color:transparent;
  4472. border-color:transparent;
  4473. }
  4474. #u25364_div {
  4475. border-width:0px;
  4476. position:absolute;
  4477. left:0px;
  4478. top:0px;
  4479. width:130px;
  4480. height:25px;
  4481. background:inherit;
  4482. background-color:rgba(255, 255, 255, 1);
  4483. border:none;
  4484. border-radius:0px;
  4485. -moz-box-shadow:none;
  4486. -webkit-box-shadow:none;
  4487. box-shadow:none;
  4488. font-family:'Microsoft YaHei', sans-serif;
  4489. font-weight:400;
  4490. font-style:normal;
  4491. }
  4492. #u25364 {
  4493. border-width:0px;
  4494. position:absolute;
  4495. left:1105px;
  4496. top:253px;
  4497. width:130px;
  4498. height:25px;
  4499. display:flex;
  4500. font-family:'Microsoft YaHei', sans-serif;
  4501. font-weight:400;
  4502. font-style:normal;
  4503. }
  4504. #u25364 .text {
  4505. position:absolute;
  4506. align-self:center;
  4507. padding:2px 2px 2px 2px;
  4508. box-sizing:border-box;
  4509. width:100%;
  4510. }
  4511. #u25364_div.disabled {
  4512. border-width:0px;
  4513. position:absolute;
  4514. left:0px;
  4515. top:0px;
  4516. width:130px;
  4517. height:25px;
  4518. background:inherit;
  4519. background-color:rgba(240, 240, 240, 1);
  4520. border:none;
  4521. border-radius:0px;
  4522. -moz-box-shadow:none;
  4523. -webkit-box-shadow:none;
  4524. box-shadow:none;
  4525. font-family:'Microsoft YaHei', sans-serif;
  4526. font-weight:400;
  4527. font-style:normal;
  4528. }
  4529. #u25364.disabled {
  4530. }
  4531. #u25365_div {
  4532. border-width:0px;
  4533. position:absolute;
  4534. left:0px;
  4535. top:0px;
  4536. width:590px;
  4537. height:100px;
  4538. background:inherit;
  4539. background-color:rgba(255, 255, 255, 1);
  4540. box-sizing:border-box;
  4541. border-width:1px;
  4542. border-style:solid;
  4543. border-color:rgba(217, 217, 217, 1);
  4544. border-radius:4px;
  4545. -moz-box-shadow:none;
  4546. -webkit-box-shadow:none;
  4547. box-shadow:none;
  4548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4549. font-weight:400;
  4550. font-style:normal;
  4551. font-size:14px;
  4552. color:rgba(0, 0, 0, 0.647058823529412);
  4553. line-height:21px;
  4554. }
  4555. #u25365 {
  4556. border-width:0px;
  4557. position:absolute;
  4558. left:350px;
  4559. top:100px;
  4560. width:590px;
  4561. height:100px;
  4562. display:flex;
  4563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4564. font-weight:400;
  4565. font-style:normal;
  4566. font-size:14px;
  4567. color:rgba(0, 0, 0, 0.647058823529412);
  4568. line-height:21px;
  4569. }
  4570. #u25365 .text {
  4571. position:absolute;
  4572. align-self:center;
  4573. padding:2px 16px 2px 16px;
  4574. box-sizing:border-box;
  4575. width:100%;
  4576. }
  4577. #u25365_text {
  4578. border-width:0px;
  4579. word-wrap:break-word;
  4580. text-transform:none;
  4581. visibility:hidden;
  4582. }
  4583. #u25366_div {
  4584. border-width:0px;
  4585. position:absolute;
  4586. left:0px;
  4587. top:0px;
  4588. width:181px;
  4589. height:30px;
  4590. background:inherit;
  4591. background-color:rgba(224, 231, 247, 0);
  4592. border:none;
  4593. border-radius:0px;
  4594. -moz-box-shadow:none;
  4595. -webkit-box-shadow:none;
  4596. box-shadow:none;
  4597. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4598. font-weight:500;
  4599. font-style:normal;
  4600. font-size:18px;
  4601. color:#298FFF;
  4602. line-height:30px;
  4603. }
  4604. #u25366 {
  4605. border-width:0px;
  4606. position:absolute;
  4607. left:489px;
  4608. top:135px;
  4609. width:181px;
  4610. height:30px;
  4611. display:flex;
  4612. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4613. font-weight:500;
  4614. font-style:normal;
  4615. font-size:18px;
  4616. color:#298FFF;
  4617. line-height:30px;
  4618. }
  4619. #u25366 .text {
  4620. position:absolute;
  4621. align-self:center;
  4622. padding:0px 0px 0px 0px;
  4623. box-sizing:border-box;
  4624. width:100%;
  4625. }
  4626. #u25366_text {
  4627. border-width:0px;
  4628. white-space:nowrap;
  4629. text-transform:none;
  4630. }
  4631. #u25367_div {
  4632. border-width:0px;
  4633. position:absolute;
  4634. left:0px;
  4635. top:0px;
  4636. width:80px;
  4637. height:30px;
  4638. background:inherit;
  4639. background-color:rgba(224, 231, 247, 0);
  4640. border:none;
  4641. border-radius:0px;
  4642. -moz-box-shadow:none;
  4643. -webkit-box-shadow:none;
  4644. box-shadow:none;
  4645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4646. font-weight:400;
  4647. font-style:normal;
  4648. line-height:30px;
  4649. }
  4650. #u25367 {
  4651. border-width:0px;
  4652. position:absolute;
  4653. left:389px;
  4654. top:135px;
  4655. width:80px;
  4656. height:30px;
  4657. display:flex;
  4658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4659. font-weight:400;
  4660. font-style:normal;
  4661. line-height:30px;
  4662. }
  4663. #u25367 .text {
  4664. position:absolute;
  4665. align-self:center;
  4666. padding:0px 0px 0px 0px;
  4667. box-sizing:border-box;
  4668. width:100%;
  4669. }
  4670. #u25367_text {
  4671. border-width:0px;
  4672. white-space:nowrap;
  4673. text-transform:none;
  4674. }
  4675. #u25368_div {
  4676. border-width:0px;
  4677. position:absolute;
  4678. left:0px;
  4679. top:0px;
  4680. width:1166px;
  4681. height:90px;
  4682. background:inherit;
  4683. background-color:rgba(224, 231, 247, 0);
  4684. border:none;
  4685. border-radius:0px;
  4686. -moz-box-shadow:none;
  4687. -webkit-box-shadow:none;
  4688. box-shadow:none;
  4689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4690. font-weight:400;
  4691. font-style:normal;
  4692. color:#D9001B;
  4693. line-height:30px;
  4694. }
  4695. #u25368 {
  4696. border-width:0px;
  4697. position:absolute;
  4698. left:375px;
  4699. top:542px;
  4700. width:1166px;
  4701. height:90px;
  4702. display:flex;
  4703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4704. font-weight:400;
  4705. font-style:normal;
  4706. color:#D9001B;
  4707. line-height:30px;
  4708. }
  4709. #u25368 .text {
  4710. position:absolute;
  4711. align-self:center;
  4712. padding:0px 0px 0px 0px;
  4713. box-sizing:border-box;
  4714. width:100%;
  4715. }
  4716. #u25368_text {
  4717. border-width:0px;
  4718. white-space:nowrap;
  4719. text-transform:none;
  4720. }
  4721. #u25369 {
  4722. border-width:0px;
  4723. position:absolute;
  4724. left:0px;
  4725. top:0px;
  4726. width:0px;
  4727. height:0px;
  4728. }
  4729. #u25370_div {
  4730. border-width:0px;
  4731. position:absolute;
  4732. left:0px;
  4733. top:0px;
  4734. width:200px;
  4735. height:1180px;
  4736. background:inherit;
  4737. background-color:rgba(255, 255, 255, 1);
  4738. border:none;
  4739. border-radius:0px;
  4740. -moz-box-shadow:none;
  4741. -webkit-box-shadow:none;
  4742. box-shadow:none;
  4743. }
  4744. #u25370 {
  4745. border-width:0px;
  4746. position:absolute;
  4747. left:120px;
  4748. top:50px;
  4749. width:200px;
  4750. height:1180px;
  4751. display:flex;
  4752. }
  4753. #u25370 .text {
  4754. position:absolute;
  4755. align-self:center;
  4756. padding:2px 2px 2px 2px;
  4757. box-sizing:border-box;
  4758. width:100%;
  4759. }
  4760. #u25370_text {
  4761. border-width:0px;
  4762. word-wrap:break-word;
  4763. text-transform:none;
  4764. visibility:hidden;
  4765. }
  4766. #u25371_div {
  4767. border-width:0px;
  4768. position:absolute;
  4769. left:0px;
  4770. top:0px;
  4771. width:200px;
  4772. height:60px;
  4773. background:inherit;
  4774. background-color:rgba(224, 231, 247, 1);
  4775. border:none;
  4776. border-radius:0px;
  4777. -moz-box-shadow:none;
  4778. -webkit-box-shadow:none;
  4779. box-shadow:none;
  4780. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4781. font-weight:500;
  4782. font-style:normal;
  4783. font-size:18px;
  4784. }
  4785. #u25371 {
  4786. border-width:0px;
  4787. position:absolute;
  4788. left:120px;
  4789. top:50px;
  4790. width:200px;
  4791. height:60px;
  4792. display:flex;
  4793. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4794. font-weight:500;
  4795. font-style:normal;
  4796. font-size:18px;
  4797. }
  4798. #u25371 .text {
  4799. position:absolute;
  4800. align-self:center;
  4801. padding:0px 0px 0px 20px;
  4802. box-sizing:border-box;
  4803. width:100%;
  4804. }
  4805. #u25371_text {
  4806. border-width:0px;
  4807. word-wrap:break-word;
  4808. text-transform:none;
  4809. }
  4810. #u25372_div {
  4811. border-width:0px;
  4812. position:absolute;
  4813. left:0px;
  4814. top:0px;
  4815. width:97px;
  4816. height:22px;
  4817. background:inherit;
  4818. background-color:rgba(255, 255, 255, 0);
  4819. border:none;
  4820. border-radius:0px;
  4821. -moz-box-shadow:none;
  4822. -webkit-box-shadow:none;
  4823. box-shadow:none;
  4824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4825. font-weight:400;
  4826. font-style:normal;
  4827. font-size:16px;
  4828. }
  4829. #u25372 {
  4830. border-width:0px;
  4831. position:absolute;
  4832. left:146px;
  4833. top:167px;
  4834. width:97px;
  4835. height:22px;
  4836. display:flex;
  4837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4838. font-weight:400;
  4839. font-style:normal;
  4840. font-size:16px;
  4841. }
  4842. #u25372 .text {
  4843. position:absolute;
  4844. align-self:flex-start;
  4845. padding:0px 0px 0px 0px;
  4846. box-sizing:border-box;
  4847. width:100%;
  4848. }
  4849. #u25372_text {
  4850. border-width:0px;
  4851. white-space:nowrap;
  4852. text-transform:none;
  4853. }
  4854. #u25373_div {
  4855. border-width:0px;
  4856. position:absolute;
  4857. left:0px;
  4858. top:0px;
  4859. width:97px;
  4860. height:22px;
  4861. background:inherit;
  4862. background-color:rgba(255, 255, 255, 0);
  4863. border:none;
  4864. border-radius:0px;
  4865. -moz-box-shadow:none;
  4866. -webkit-box-shadow:none;
  4867. box-shadow:none;
  4868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4869. font-weight:400;
  4870. font-style:normal;
  4871. font-size:16px;
  4872. }
  4873. #u25373 {
  4874. border-width:0px;
  4875. position:absolute;
  4876. left:146px;
  4877. top:209px;
  4878. width:97px;
  4879. height:22px;
  4880. display:flex;
  4881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4882. font-weight:400;
  4883. font-style:normal;
  4884. font-size:16px;
  4885. }
  4886. #u25373 .text {
  4887. position:absolute;
  4888. align-self:flex-start;
  4889. padding:0px 0px 0px 0px;
  4890. box-sizing:border-box;
  4891. width:100%;
  4892. }
  4893. #u25373_text {
  4894. border-width:0px;
  4895. white-space:nowrap;
  4896. text-transform:none;
  4897. }
  4898. #u25374_div {
  4899. border-width:0px;
  4900. position:absolute;
  4901. left:0px;
  4902. top:0px;
  4903. width:73px;
  4904. height:17px;
  4905. background:inherit;
  4906. background-color:rgba(255, 255, 255, 0);
  4907. border:none;
  4908. border-radius:0px;
  4909. -moz-box-shadow:none;
  4910. -webkit-box-shadow:none;
  4911. box-shadow:none;
  4912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4913. font-weight:400;
  4914. font-style:normal;
  4915. font-size:12px;
  4916. color:#AAAAAA;
  4917. }
  4918. #u25374 {
  4919. border-width:0px;
  4920. position:absolute;
  4921. left:146px;
  4922. top:130px;
  4923. width:73px;
  4924. height:17px;
  4925. display:flex;
  4926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4927. font-weight:400;
  4928. font-style:normal;
  4929. font-size:12px;
  4930. color:#AAAAAA;
  4931. }
  4932. #u25374 .text {
  4933. position:absolute;
  4934. align-self:flex-start;
  4935. padding:0px 0px 0px 0px;
  4936. box-sizing:border-box;
  4937. width:100%;
  4938. }
  4939. #u25374_text {
  4940. border-width:0px;
  4941. white-space:nowrap;
  4942. text-transform:none;
  4943. }
  4944. #u25375_div {
  4945. border-width:0px;
  4946. position:absolute;
  4947. left:0px;
  4948. top:0px;
  4949. width:73px;
  4950. height:17px;
  4951. background:inherit;
  4952. background-color:rgba(255, 255, 255, 0);
  4953. border:none;
  4954. border-radius:0px;
  4955. -moz-box-shadow:none;
  4956. -webkit-box-shadow:none;
  4957. box-shadow:none;
  4958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4959. font-weight:400;
  4960. font-style:normal;
  4961. font-size:12px;
  4962. color:#AAAAAA;
  4963. }
  4964. #u25375 {
  4965. border-width:0px;
  4966. position:absolute;
  4967. left:146px;
  4968. top:397px;
  4969. width:73px;
  4970. height:17px;
  4971. display:flex;
  4972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4973. font-weight:400;
  4974. font-style:normal;
  4975. font-size:12px;
  4976. color:#AAAAAA;
  4977. }
  4978. #u25375 .text {
  4979. position:absolute;
  4980. align-self:flex-start;
  4981. padding:0px 0px 0px 0px;
  4982. box-sizing:border-box;
  4983. width:100%;
  4984. }
  4985. #u25375_text {
  4986. border-width:0px;
  4987. white-space:nowrap;
  4988. text-transform:none;
  4989. }
  4990. #u25376_img {
  4991. border-width:0px;
  4992. position:absolute;
  4993. left:0px;
  4994. top:0px;
  4995. width:201px;
  4996. height:2px;
  4997. }
  4998. #u25376 {
  4999. border-width:0px;
  5000. position:absolute;
  5001. left:120px;
  5002. top:375px;
  5003. width:200px;
  5004. height:1px;
  5005. display:flex;
  5006. }
  5007. #u25376 .text {
  5008. position:absolute;
  5009. align-self:center;
  5010. padding:2px 2px 2px 2px;
  5011. box-sizing:border-box;
  5012. width:100%;
  5013. }
  5014. #u25376_text {
  5015. border-width:0px;
  5016. word-wrap:break-word;
  5017. text-transform:none;
  5018. visibility:hidden;
  5019. }
  5020. #u25377_div {
  5021. border-width:0px;
  5022. position:absolute;
  5023. left:0px;
  5024. top:0px;
  5025. width:97px;
  5026. height:22px;
  5027. background:inherit;
  5028. background-color:rgba(255, 255, 255, 0);
  5029. border:none;
  5030. border-radius:0px;
  5031. -moz-box-shadow:none;
  5032. -webkit-box-shadow:none;
  5033. box-shadow:none;
  5034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5035. font-weight:400;
  5036. font-style:normal;
  5037. font-size:16px;
  5038. }
  5039. #u25377 {
  5040. border-width:0px;
  5041. position:absolute;
  5042. left:146px;
  5043. top:435px;
  5044. width:97px;
  5045. height:22px;
  5046. display:flex;
  5047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5048. font-weight:400;
  5049. font-style:normal;
  5050. font-size:16px;
  5051. }
  5052. #u25377 .text {
  5053. position:absolute;
  5054. align-self:flex-start;
  5055. padding:0px 0px 0px 0px;
  5056. box-sizing:border-box;
  5057. width:100%;
  5058. }
  5059. #u25377_text {
  5060. border-width:0px;
  5061. white-space:nowrap;
  5062. text-transform:none;
  5063. }
  5064. #u25378_div {
  5065. border-width:0px;
  5066. position:absolute;
  5067. left:0px;
  5068. top:0px;
  5069. width:97px;
  5070. height:22px;
  5071. background:inherit;
  5072. background-color:rgba(255, 255, 255, 0);
  5073. border:none;
  5074. border-radius:0px;
  5075. -moz-box-shadow:none;
  5076. -webkit-box-shadow:none;
  5077. box-shadow:none;
  5078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5079. font-weight:400;
  5080. font-style:normal;
  5081. font-size:16px;
  5082. }
  5083. #u25378 {
  5084. border-width:0px;
  5085. position:absolute;
  5086. left:146px;
  5087. top:477px;
  5088. width:97px;
  5089. height:22px;
  5090. display:flex;
  5091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5092. font-weight:400;
  5093. font-style:normal;
  5094. font-size:16px;
  5095. }
  5096. #u25378 .text {
  5097. position:absolute;
  5098. align-self:flex-start;
  5099. padding:0px 0px 0px 0px;
  5100. box-sizing:border-box;
  5101. width:100%;
  5102. }
  5103. #u25378_text {
  5104. border-width:0px;
  5105. white-space:nowrap;
  5106. text-transform:none;
  5107. }
  5108. #u25379_div {
  5109. border-width:0px;
  5110. position:absolute;
  5111. left:0px;
  5112. top:0px;
  5113. width:97px;
  5114. height:22px;
  5115. background:inherit;
  5116. background-color:rgba(255, 255, 255, 0);
  5117. border:none;
  5118. border-radius:0px;
  5119. -moz-box-shadow:none;
  5120. -webkit-box-shadow:none;
  5121. box-shadow:none;
  5122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5123. font-weight:400;
  5124. font-style:normal;
  5125. font-size:16px;
  5126. }
  5127. #u25379 {
  5128. border-width:0px;
  5129. position:absolute;
  5130. left:146px;
  5131. top:251px;
  5132. width:97px;
  5133. height:22px;
  5134. display:flex;
  5135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5136. font-weight:400;
  5137. font-style:normal;
  5138. font-size:16px;
  5139. }
  5140. #u25379 .text {
  5141. position:absolute;
  5142. align-self:flex-start;
  5143. padding:0px 0px 0px 0px;
  5144. box-sizing:border-box;
  5145. width:100%;
  5146. }
  5147. #u25379_text {
  5148. border-width:0px;
  5149. white-space:nowrap;
  5150. text-transform:none;
  5151. }
  5152. #u25380_div {
  5153. border-width:0px;
  5154. position:absolute;
  5155. left:0px;
  5156. top:0px;
  5157. width:97px;
  5158. height:22px;
  5159. background:inherit;
  5160. background-color:rgba(255, 255, 255, 0);
  5161. border:none;
  5162. border-radius:0px;
  5163. -moz-box-shadow:none;
  5164. -webkit-box-shadow:none;
  5165. box-shadow:none;
  5166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5167. font-weight:400;
  5168. font-style:normal;
  5169. font-size:16px;
  5170. }
  5171. #u25380 {
  5172. border-width:0px;
  5173. position:absolute;
  5174. left:146px;
  5175. top:293px;
  5176. width:97px;
  5177. height:22px;
  5178. display:flex;
  5179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5180. font-weight:400;
  5181. font-style:normal;
  5182. font-size:16px;
  5183. }
  5184. #u25380 .text {
  5185. position:absolute;
  5186. align-self:flex-start;
  5187. padding:0px 0px 0px 0px;
  5188. box-sizing:border-box;
  5189. width:100%;
  5190. }
  5191. #u25380_text {
  5192. border-width:0px;
  5193. white-space:nowrap;
  5194. text-transform:none;
  5195. }
  5196. #u25381_div {
  5197. border-width:0px;
  5198. position:absolute;
  5199. left:0px;
  5200. top:0px;
  5201. width:97px;
  5202. height:22px;
  5203. background:inherit;
  5204. background-color:rgba(255, 255, 255, 0);
  5205. border:none;
  5206. border-radius:0px;
  5207. -moz-box-shadow:none;
  5208. -webkit-box-shadow:none;
  5209. box-shadow:none;
  5210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5211. font-weight:400;
  5212. font-style:normal;
  5213. font-size:16px;
  5214. }
  5215. #u25381 {
  5216. border-width:0px;
  5217. position:absolute;
  5218. left:146px;
  5219. top:519px;
  5220. width:97px;
  5221. height:22px;
  5222. display:flex;
  5223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5224. font-weight:400;
  5225. font-style:normal;
  5226. font-size:16px;
  5227. }
  5228. #u25381 .text {
  5229. position:absolute;
  5230. align-self:flex-start;
  5231. padding:0px 0px 0px 0px;
  5232. box-sizing:border-box;
  5233. width:100%;
  5234. }
  5235. #u25381_text {
  5236. border-width:0px;
  5237. white-space:nowrap;
  5238. text-transform:none;
  5239. }
  5240. #u25382_div {
  5241. border-width:0px;
  5242. position:absolute;
  5243. left:0px;
  5244. top:0px;
  5245. width:97px;
  5246. height:22px;
  5247. background:inherit;
  5248. background-color:rgba(255, 255, 255, 0);
  5249. border:none;
  5250. border-radius:0px;
  5251. -moz-box-shadow:none;
  5252. -webkit-box-shadow:none;
  5253. box-shadow:none;
  5254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5255. font-weight:400;
  5256. font-style:normal;
  5257. font-size:16px;
  5258. }
  5259. #u25382 {
  5260. border-width:0px;
  5261. position:absolute;
  5262. left:146px;
  5263. top:561px;
  5264. width:97px;
  5265. height:22px;
  5266. display:flex;
  5267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5268. font-weight:400;
  5269. font-style:normal;
  5270. font-size:16px;
  5271. }
  5272. #u25382 .text {
  5273. position:absolute;
  5274. align-self:flex-start;
  5275. padding:0px 0px 0px 0px;
  5276. box-sizing:border-box;
  5277. width:100%;
  5278. }
  5279. #u25382_text {
  5280. border-width:0px;
  5281. white-space:nowrap;
  5282. text-transform:none;
  5283. }
  5284. #u25383_div {
  5285. border-width:0px;
  5286. position:absolute;
  5287. left:0px;
  5288. top:0px;
  5289. width:122px;
  5290. height:22px;
  5291. background:inherit;
  5292. background-color:rgba(255, 255, 255, 0);
  5293. border:none;
  5294. border-radius:0px;
  5295. -moz-box-shadow:none;
  5296. -webkit-box-shadow:none;
  5297. box-shadow:none;
  5298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5299. font-weight:400;
  5300. font-style:normal;
  5301. font-size:16px;
  5302. }
  5303. #u25383 {
  5304. border-width:0px;
  5305. position:absolute;
  5306. left:146px;
  5307. top:603px;
  5308. width:122px;
  5309. height:22px;
  5310. display:flex;
  5311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5312. font-weight:400;
  5313. font-style:normal;
  5314. font-size:16px;
  5315. }
  5316. #u25383 .text {
  5317. position:absolute;
  5318. align-self:flex-start;
  5319. padding:0px 0px 0px 0px;
  5320. box-sizing:border-box;
  5321. width:100%;
  5322. }
  5323. #u25383_text {
  5324. border-width:0px;
  5325. white-space:nowrap;
  5326. text-transform:none;
  5327. }
  5328. #u25384_div {
  5329. border-width:0px;
  5330. position:absolute;
  5331. left:0px;
  5332. top:0px;
  5333. width:49px;
  5334. height:17px;
  5335. background:inherit;
  5336. background-color:rgba(255, 255, 255, 0);
  5337. border:none;
  5338. border-radius:0px;
  5339. -moz-box-shadow:none;
  5340. -webkit-box-shadow:none;
  5341. box-shadow:none;
  5342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5343. font-weight:400;
  5344. font-style:normal;
  5345. font-size:12px;
  5346. color:#AAAAAA;
  5347. }
  5348. #u25384 {
  5349. border-width:0px;
  5350. position:absolute;
  5351. left:146px;
  5352. top:809px;
  5353. width:49px;
  5354. height:17px;
  5355. display:flex;
  5356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5357. font-weight:400;
  5358. font-style:normal;
  5359. font-size:12px;
  5360. color:#AAAAAA;
  5361. }
  5362. #u25384 .text {
  5363. position:absolute;
  5364. align-self:flex-start;
  5365. padding:0px 0px 0px 0px;
  5366. box-sizing:border-box;
  5367. width:100%;
  5368. }
  5369. #u25384_text {
  5370. border-width:0px;
  5371. white-space:nowrap;
  5372. text-transform:none;
  5373. }
  5374. #u25385_img {
  5375. border-width:0px;
  5376. position:absolute;
  5377. left:0px;
  5378. top:0px;
  5379. width:201px;
  5380. height:2px;
  5381. }
  5382. #u25385 {
  5383. border-width:0px;
  5384. position:absolute;
  5385. left:120px;
  5386. top:787px;
  5387. width:200px;
  5388. height:1px;
  5389. display:flex;
  5390. }
  5391. #u25385 .text {
  5392. position:absolute;
  5393. align-self:center;
  5394. padding:2px 2px 2px 2px;
  5395. box-sizing:border-box;
  5396. width:100%;
  5397. }
  5398. #u25385_text {
  5399. border-width:0px;
  5400. word-wrap:break-word;
  5401. text-transform:none;
  5402. visibility:hidden;
  5403. }
  5404. #u25386_div {
  5405. border-width:0px;
  5406. position:absolute;
  5407. left:0px;
  5408. top:0px;
  5409. width:97px;
  5410. height:22px;
  5411. background:inherit;
  5412. background-color:rgba(255, 255, 255, 0);
  5413. border:none;
  5414. border-radius:0px;
  5415. -moz-box-shadow:none;
  5416. -webkit-box-shadow:none;
  5417. box-shadow:none;
  5418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5419. font-weight:400;
  5420. font-style:normal;
  5421. font-size:16px;
  5422. }
  5423. #u25386 {
  5424. border-width:0px;
  5425. position:absolute;
  5426. left:146px;
  5427. top:847px;
  5428. width:97px;
  5429. height:22px;
  5430. display:flex;
  5431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5432. font-weight:400;
  5433. font-style:normal;
  5434. font-size:16px;
  5435. }
  5436. #u25386 .text {
  5437. position:absolute;
  5438. align-self:flex-start;
  5439. padding:0px 0px 0px 0px;
  5440. box-sizing:border-box;
  5441. width:100%;
  5442. }
  5443. #u25386_text {
  5444. border-width:0px;
  5445. white-space:nowrap;
  5446. text-transform:none;
  5447. }
  5448. #u25387_div {
  5449. border-width:0px;
  5450. position:absolute;
  5451. left:0px;
  5452. top:0px;
  5453. width:97px;
  5454. height:22px;
  5455. background:inherit;
  5456. background-color:rgba(255, 255, 255, 0);
  5457. border:none;
  5458. border-radius:0px;
  5459. -moz-box-shadow:none;
  5460. -webkit-box-shadow:none;
  5461. box-shadow:none;
  5462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5463. font-weight:400;
  5464. font-style:normal;
  5465. font-size:16px;
  5466. }
  5467. #u25387 {
  5468. border-width:0px;
  5469. position:absolute;
  5470. left:146px;
  5471. top:889px;
  5472. width:97px;
  5473. height:22px;
  5474. display:flex;
  5475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5476. font-weight:400;
  5477. font-style:normal;
  5478. font-size:16px;
  5479. }
  5480. #u25387 .text {
  5481. position:absolute;
  5482. align-self:flex-start;
  5483. padding:0px 0px 0px 0px;
  5484. box-sizing:border-box;
  5485. width:100%;
  5486. }
  5487. #u25387_text {
  5488. border-width:0px;
  5489. white-space:nowrap;
  5490. text-transform:none;
  5491. }
  5492. #u25388_div {
  5493. border-width:0px;
  5494. position:absolute;
  5495. left:0px;
  5496. top:0px;
  5497. width:97px;
  5498. height:22px;
  5499. background:inherit;
  5500. background-color:rgba(255, 255, 255, 0);
  5501. border:none;
  5502. border-radius:0px;
  5503. -moz-box-shadow:none;
  5504. -webkit-box-shadow:none;
  5505. box-shadow:none;
  5506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5507. font-weight:400;
  5508. font-style:normal;
  5509. font-size:16px;
  5510. }
  5511. #u25388 {
  5512. border-width:0px;
  5513. position:absolute;
  5514. left:146px;
  5515. top:335px;
  5516. width:97px;
  5517. height:22px;
  5518. display:flex;
  5519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5520. font-weight:400;
  5521. font-style:normal;
  5522. font-size:16px;
  5523. }
  5524. #u25388 .text {
  5525. position:absolute;
  5526. align-self:flex-start;
  5527. padding:0px 0px 0px 0px;
  5528. box-sizing:border-box;
  5529. width:100%;
  5530. }
  5531. #u25388_text {
  5532. border-width:0px;
  5533. white-space:nowrap;
  5534. text-transform:none;
  5535. }
  5536. #u25389_div {
  5537. border-width:0px;
  5538. position:absolute;
  5539. left:0px;
  5540. top:0px;
  5541. width:97px;
  5542. height:22px;
  5543. background:inherit;
  5544. background-color:rgba(255, 255, 255, 0);
  5545. border:none;
  5546. border-radius:0px;
  5547. -moz-box-shadow:none;
  5548. -webkit-box-shadow:none;
  5549. box-shadow:none;
  5550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5551. font-weight:400;
  5552. font-style:normal;
  5553. font-size:16px;
  5554. }
  5555. #u25389 {
  5556. border-width:0px;
  5557. position:absolute;
  5558. left:146px;
  5559. top:931px;
  5560. width:97px;
  5561. height:22px;
  5562. display:flex;
  5563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5564. font-weight:400;
  5565. font-style:normal;
  5566. font-size:16px;
  5567. }
  5568. #u25389 .text {
  5569. position:absolute;
  5570. align-self:flex-start;
  5571. padding:0px 0px 0px 0px;
  5572. box-sizing:border-box;
  5573. width:100%;
  5574. }
  5575. #u25389_text {
  5576. border-width:0px;
  5577. white-space:nowrap;
  5578. text-transform:none;
  5579. }
  5580. #u25390_div {
  5581. border-width:0px;
  5582. position:absolute;
  5583. left:0px;
  5584. top:0px;
  5585. width:49px;
  5586. height:17px;
  5587. background:inherit;
  5588. background-color:rgba(255, 255, 255, 0);
  5589. border:none;
  5590. border-radius:0px;
  5591. -moz-box-shadow:none;
  5592. -webkit-box-shadow:none;
  5593. box-shadow:none;
  5594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5595. font-weight:400;
  5596. font-style:normal;
  5597. font-size:12px;
  5598. color:#AAAAAA;
  5599. }
  5600. #u25390 {
  5601. border-width:0px;
  5602. position:absolute;
  5603. left:146px;
  5604. top:995px;
  5605. width:49px;
  5606. height:17px;
  5607. display:flex;
  5608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5609. font-weight:400;
  5610. font-style:normal;
  5611. font-size:12px;
  5612. color:#AAAAAA;
  5613. }
  5614. #u25390 .text {
  5615. position:absolute;
  5616. align-self:flex-start;
  5617. padding:0px 0px 0px 0px;
  5618. box-sizing:border-box;
  5619. width:100%;
  5620. }
  5621. #u25390_text {
  5622. border-width:0px;
  5623. white-space:nowrap;
  5624. text-transform:none;
  5625. }
  5626. #u25391_img {
  5627. border-width:0px;
  5628. position:absolute;
  5629. left:0px;
  5630. top:0px;
  5631. width:201px;
  5632. height:2px;
  5633. }
  5634. #u25391 {
  5635. border-width:0px;
  5636. position:absolute;
  5637. left:120px;
  5638. top:973px;
  5639. width:200px;
  5640. height:1px;
  5641. display:flex;
  5642. }
  5643. #u25391 .text {
  5644. position:absolute;
  5645. align-self:center;
  5646. padding:2px 2px 2px 2px;
  5647. box-sizing:border-box;
  5648. width:100%;
  5649. }
  5650. #u25391_text {
  5651. border-width:0px;
  5652. word-wrap:break-word;
  5653. text-transform:none;
  5654. visibility:hidden;
  5655. }
  5656. #u25392_div {
  5657. border-width:0px;
  5658. position:absolute;
  5659. left:0px;
  5660. top:0px;
  5661. width:97px;
  5662. height:22px;
  5663. background:inherit;
  5664. background-color:rgba(255, 255, 255, 0);
  5665. border:none;
  5666. border-radius:0px;
  5667. -moz-box-shadow:none;
  5668. -webkit-box-shadow:none;
  5669. box-shadow:none;
  5670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5671. font-weight:400;
  5672. font-style:normal;
  5673. font-size:16px;
  5674. }
  5675. #u25392 {
  5676. border-width:0px;
  5677. position:absolute;
  5678. left:146px;
  5679. top:1033px;
  5680. width:97px;
  5681. height:22px;
  5682. display:flex;
  5683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5684. font-weight:400;
  5685. font-style:normal;
  5686. font-size:16px;
  5687. }
  5688. #u25392 .text {
  5689. position:absolute;
  5690. align-self:flex-start;
  5691. padding:0px 0px 0px 0px;
  5692. box-sizing:border-box;
  5693. width:100%;
  5694. }
  5695. #u25392_text {
  5696. border-width:0px;
  5697. white-space:nowrap;
  5698. text-transform:none;
  5699. }
  5700. #u25393_div {
  5701. border-width:0px;
  5702. position:absolute;
  5703. left:0px;
  5704. top:0px;
  5705. width:73px;
  5706. height:17px;
  5707. background:inherit;
  5708. background-color:rgba(255, 255, 255, 0);
  5709. border:none;
  5710. border-radius:0px;
  5711. -moz-box-shadow:none;
  5712. -webkit-box-shadow:none;
  5713. box-shadow:none;
  5714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5715. font-weight:400;
  5716. font-style:normal;
  5717. font-size:12px;
  5718. color:#AAAAAA;
  5719. }
  5720. #u25393 {
  5721. border-width:0px;
  5722. position:absolute;
  5723. left:146px;
  5724. top:667px;
  5725. width:73px;
  5726. height:17px;
  5727. display:flex;
  5728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5729. font-weight:400;
  5730. font-style:normal;
  5731. font-size:12px;
  5732. color:#AAAAAA;
  5733. }
  5734. #u25393 .text {
  5735. position:absolute;
  5736. align-self:flex-start;
  5737. padding:0px 0px 0px 0px;
  5738. box-sizing:border-box;
  5739. width:100%;
  5740. }
  5741. #u25393_text {
  5742. border-width:0px;
  5743. white-space:nowrap;
  5744. text-transform:none;
  5745. }
  5746. #u25394_img {
  5747. border-width:0px;
  5748. position:absolute;
  5749. left:0px;
  5750. top:0px;
  5751. width:201px;
  5752. height:2px;
  5753. }
  5754. #u25394 {
  5755. border-width:0px;
  5756. position:absolute;
  5757. left:120px;
  5758. top:645px;
  5759. width:200px;
  5760. height:1px;
  5761. display:flex;
  5762. }
  5763. #u25394 .text {
  5764. position:absolute;
  5765. align-self:center;
  5766. padding:2px 2px 2px 2px;
  5767. box-sizing:border-box;
  5768. width:100%;
  5769. }
  5770. #u25394_text {
  5771. border-width:0px;
  5772. word-wrap:break-word;
  5773. text-transform:none;
  5774. visibility:hidden;
  5775. }
  5776. #u25395_div {
  5777. border-width:0px;
  5778. position:absolute;
  5779. left:0px;
  5780. top:0px;
  5781. width:97px;
  5782. height:22px;
  5783. background:inherit;
  5784. background-color:rgba(255, 255, 255, 0);
  5785. border:none;
  5786. border-radius:0px;
  5787. -moz-box-shadow:none;
  5788. -webkit-box-shadow:none;
  5789. box-shadow:none;
  5790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5791. font-weight:400;
  5792. font-style:normal;
  5793. font-size:16px;
  5794. }
  5795. #u25395 {
  5796. border-width:0px;
  5797. position:absolute;
  5798. left:146px;
  5799. top:705px;
  5800. width:97px;
  5801. height:22px;
  5802. display:flex;
  5803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5804. font-weight:400;
  5805. font-style:normal;
  5806. font-size:16px;
  5807. }
  5808. #u25395 .text {
  5809. position:absolute;
  5810. align-self:flex-start;
  5811. padding:0px 0px 0px 0px;
  5812. box-sizing:border-box;
  5813. width:100%;
  5814. }
  5815. #u25395_text {
  5816. border-width:0px;
  5817. white-space:nowrap;
  5818. text-transform:none;
  5819. }
  5820. #u25396_div {
  5821. border-width:0px;
  5822. position:absolute;
  5823. left:0px;
  5824. top:0px;
  5825. width:97px;
  5826. height:22px;
  5827. background:inherit;
  5828. background-color:rgba(255, 255, 255, 0);
  5829. border:none;
  5830. border-radius:0px;
  5831. -moz-box-shadow:none;
  5832. -webkit-box-shadow:none;
  5833. box-shadow:none;
  5834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5835. font-weight:400;
  5836. font-style:normal;
  5837. font-size:16px;
  5838. }
  5839. #u25396 {
  5840. border-width:0px;
  5841. position:absolute;
  5842. left:146px;
  5843. top:747px;
  5844. width:97px;
  5845. height:22px;
  5846. display:flex;
  5847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5848. font-weight:400;
  5849. font-style:normal;
  5850. font-size:16px;
  5851. }
  5852. #u25396 .text {
  5853. position:absolute;
  5854. align-self:flex-start;
  5855. padding:0px 0px 0px 0px;
  5856. box-sizing:border-box;
  5857. width:100%;
  5858. }
  5859. #u25396_text {
  5860. border-width:0px;
  5861. white-space:nowrap;
  5862. text-transform:none;
  5863. }